10 lines
218 B
SCSS
10 lines
218 B
SCSS
|
.dashboard {
|
||
|
display: flex;
|
||
|
flex-direction: column;
|
||
|
flex-wrap: wrap;
|
||
|
@include themify() {
|
||
|
color: getThemifyVariable('primary-text-color');
|
||
|
background-color: getThemifyVariable('background-color');
|
||
|
}
|
||
|
}
|