2019-08-11 09:08:17 +00:00
|
|
|
.dashboard {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
flex-wrap: wrap;
|
|
|
|
@include themify() {
|
|
|
|
color: getThemifyVariable('primary-text-color');
|
|
|
|
background-color: getThemifyVariable('background-color');
|
|
|
|
}
|
2019-09-24 21:52:45 +00:00
|
|
|
height: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
.dashboard-content {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
flex: 1;
|
|
|
|
overflow: hidden;
|
2019-11-14 21:01:33 +00:00
|
|
|
max-width: #{1012 / $base-font-size}rem;
|
|
|
|
margin: 0 auto;
|
|
|
|
width: 100%;
|
2019-11-10 18:35:44 +00:00
|
|
|
|
|
|
|
@include themify() {
|
|
|
|
border: 1px solid getThemifyVariable('modal-border-color');
|
|
|
|
}
|
2019-08-11 09:08:17 +00:00
|
|
|
}
|