10 lines
229 B
SCSS
10 lines
229 B
SCSS
.user {
|
|
display: flex;
|
|
flex-direction: column;
|
|
height: 100%;
|
|
flex-wrap: wrap;
|
|
@include themify() {
|
|
color: getThemifyVariable('primary-text-color');
|
|
background-color: getThemifyVariable('background-color');
|
|
}
|
|
}
|