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

27 lines
318 B
SCSS
Raw Normal View History

.preview-console {
position: fixed;
width:100%;
height:60px;
right:0px;
bottom: 0px;
background:grey;
z-index:1000;
& > {
position:relative;
text-align:left;
}
2016-07-18 02:49:38 +02:00
// assign styles to different types of console messages
.log {
color: black;
}
.error {
color: red;
}
.warn {
color: yellow;
}
}