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