mirror of
https://github.com/atom/atom.git
synced 2026-04-06 03:02:13 -04:00
37 lines
521 B
Plaintext
37 lines
521 B
Plaintext
#config-view {
|
|
height: 100%;
|
|
width: 100%;
|
|
background: white;
|
|
display: -webkit-flex;
|
|
|
|
#panel-menu {
|
|
background: #f3f3f3;
|
|
|
|
li {
|
|
width: 100px;
|
|
padding: 10px;
|
|
background: #ddd;
|
|
box-sizing: border-box;
|
|
cursor: pointer;
|
|
|
|
&.active {
|
|
background: #aaa;
|
|
}
|
|
}
|
|
}
|
|
|
|
#panels {
|
|
-webkit-flex: 1;
|
|
> div {
|
|
padding: 10px;
|
|
}
|
|
|
|
label {
|
|
display: inline-block;
|
|
width: 180px;
|
|
text-align: right;
|
|
margin-right: 5px;
|
|
}
|
|
}
|
|
}
|