27 lines
No EOL
318 B
SCSS
27 lines
No EOL
318 B
SCSS
.preview-console {
|
|
position: fixed;
|
|
width:100%;
|
|
height:60px;
|
|
right:0px;
|
|
bottom: 0px;
|
|
background:grey;
|
|
z-index:1000;
|
|
|
|
& > {
|
|
position:relative;
|
|
text-align:left;
|
|
}
|
|
|
|
// assign styles to different types of console messages
|
|
.log {
|
|
color: black;
|
|
}
|
|
|
|
.error {
|
|
color: red;
|
|
}
|
|
|
|
.warn {
|
|
color: yellow;
|
|
}
|
|
} |