mirror of
https://github.com/atom/atom.git
synced 2026-02-03 19:25:06 -05:00
22 lines
395 B
Plaintext
22 lines
395 B
Plaintext
atom-workspace {
|
|
background-color: @app-background-color;
|
|
}
|
|
|
|
.scrollbars-visible-always {
|
|
::-webkit-scrollbar {
|
|
width: 10px;
|
|
height: 10px;
|
|
}
|
|
|
|
::-webkit-scrollbar-track,
|
|
::-webkit-scrollbar-corner {
|
|
background: @scrollbar-background-color;
|
|
}
|
|
|
|
::-webkit-scrollbar-thumb {
|
|
background: @scrollbar-color;
|
|
border-radius: 5px;
|
|
box-shadow: 0 0 1px white inset;
|
|
}
|
|
}
|