Files
stash/ui/v2.5/src/components/Settings/styles.scss
WithoutPants cb594f0e43 Fix various issues with v2.5 UI (#390)
* Fix navbar collapse breakpoint
* Fix list filter colors and height
* Make styling similar to v2
* Fix scene card zoom and orientation
* Keep p tag even without details
* Fix custom css
* Default settings tab to tasks
* Fix flickering progress bar. Fix percentage.
* Fix unsetting studio
* Fix scene gallery select
* Don't hide edit on small devices
* Fix log dropdown style
* Use monospace for custom css input
2020-03-06 20:02:02 +11:00

38 lines
558 B
SCSS

.logs {
font-family: source-code-pro, Menlo, Monaco, Consolas, "Courier New", monospace;
font-size: smaller;
max-height: 100vh;
overflow-x: hidden;
overflow-y: auto;
padding-top: 1rem;
white-space: pre-wrap;
.debug {
color: lightgreen;
font-weight: bold;
}
.info {
color: white;
font-weight: bold;
}
.warning {
color: orange;
font-weight: bold;
}
.error {
color: red;
font-weight: bold;
}
}
.log-time {
margin-right: 1rem;
}
#configuration-tabs-tabpane-about .table {
width: initial;
}