p5.js-web-editor/client/styles/components/_console.scss

27 lines
438 B
SCSS
Raw Normal View History

.preview-console {
position: fixed;
width:100%;
height:60px;
right:0px;
bottom: 0px;
2016-07-19 01:10:42 +02:00
background:$dark-background-color;
z-index:1000;
& > {
position:relative;
text-align:left;
}
2016-07-18 02:49:38 +02:00
// assign styles to different types of console messages
2016-07-19 01:10:42 +02:00
.preview-console__log {
color: $dark-secondary-text-color;
2016-07-18 02:49:38 +02:00
}
2016-07-19 01:10:42 +02:00
.preview-console__error {
color: $console-error-color;
2016-07-18 02:49:38 +02:00
}
2016-07-19 01:10:42 +02:00
.preview-console__warn {
color: $console-warn-color;
2016-07-18 02:49:38 +02:00
}
}