p5.js-web-editor/client/styles/layout/_dashboard.scss

22 lines
424 B
SCSS
Raw Normal View History

2019-08-11 11:08:17 +02:00
.dashboard {
display: flex;
flex-direction: column;
flex-wrap: wrap;
@include themify() {
color: getThemifyVariable('primary-text-color');
background-color: getThemifyVariable('background-color');
}
height: 100%;
}
.dashboard-content {
display: flex;
flex-direction: column;
flex: 1;
overflow: hidden;
2019-11-10 19:35:44 +01:00
@include themify() {
border: 1px solid getThemifyVariable('modal-border-color');
}
2019-08-11 11:08:17 +02:00
}