mirror of
https://github.com/Readarr/Readarr
synced 2026-02-05 06:12:42 +01:00
27 lines
362 B
CSS
27 lines
362 B
CSS
.menuButton {
|
|
margin-right: 15px;
|
|
width: 30px;
|
|
height: 60px;
|
|
text-align: center;
|
|
|
|
&:hover {
|
|
color: $themeDarkColor;
|
|
}
|
|
}
|
|
|
|
.itemIcon {
|
|
margin-right: 8px;
|
|
}
|
|
|
|
.separator {
|
|
overflow: hidden;
|
|
height: 1px;
|
|
background-color: $themeDarkColor;
|
|
}
|
|
|
|
@media only screen and (max-width: $breakpointSmall) {
|
|
.menuButton {
|
|
margin-right: 5px;
|
|
}
|
|
}
|
|
|