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

39 lines
480 B
SCSS
Raw Normal View History

2016-05-18 19:37:59 +02:00
.ide {
2016-05-11 04:22:32 +02:00
display: flex;
2016-07-21 06:05:47 +02:00
flex-direction: column;
2016-05-11 04:22:32 +02:00
height: 100%;
2016-05-11 19:19:37 +02:00
flex-wrap: wrap;
2016-05-11 04:22:32 +02:00
}
2016-07-21 06:05:47 +02:00
.editor-preview-container {
width: 100%;
flex: 1 0 0;
display: flex;
}
.editor-console-container {
flex: 1 0 0;
2016-07-12 21:58:11 +02:00
max-width: 45%;
2016-07-21 06:05:47 +02:00
height: 100%;
position: relative;
}
.editor-holder {
2016-05-11 04:22:32 +02:00
height: 100%;
}
.preview-frame {
2016-07-12 21:58:11 +02:00
flex: 1 0 0;
2016-05-11 19:19:37 +02:00
}
.toolbar {
width: 100%;
2016-06-17 20:31:33 +02:00
}
.sidebar {
2016-07-14 18:47:54 +02:00
width: #{180 / $base-font-size}rem;
&.sidebar--contracted {
width: #{20 / $base-font-size}rem;
}
}