30 lines
398 B
Plaintext
30 lines
398 B
Plaintext
.root {
|
|
color: #333;
|
|
font-size: 14px;
|
|
min-width: 200px;
|
|
|
|
&.hasTab {
|
|
min-width: 300px;
|
|
}
|
|
}
|
|
|
|
.menu {
|
|
.item {
|
|
display: flex;
|
|
cursor: pointer;
|
|
padding: .75em 1em;
|
|
border-bottom: 1px solid #eee;
|
|
transition: background-color .3s;
|
|
|
|
svg {
|
|
width: 1em;
|
|
color: #28b9be;
|
|
margin-right: .5em;
|
|
}
|
|
}
|
|
|
|
.item:hover {
|
|
background-color: #eee;
|
|
}
|
|
}
|