mirror of
https://github.com/Rnhmjoj/solarized-dark-ui
synced 2025-01-10 09:24:21 +01:00
27 lines
429 B
Plaintext
27 lines
429 B
Plaintext
@import "ui-variables";
|
|
|
|
* {
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
atom-workspace {
|
|
background-color: @app-background-color;
|
|
}
|
|
|
|
.scrollbars-visible-always {
|
|
/deep/ ::-webkit-scrollbar {
|
|
width: 10px;
|
|
height: 10px;
|
|
}
|
|
|
|
/deep/ ::-webkit-scrollbar-track,
|
|
/deep/ ::-webkit-scrollbar-corner {
|
|
background: @scroll-background;
|
|
}
|
|
|
|
/deep/ ::-webkit-scrollbar-thumb {
|
|
background: @scroll-thumb;
|
|
box-shadow: 0 0 1px black inset;
|
|
}
|
|
}
|