mirror of
https://github.com/inverse-inc/sogo.git
synced 2026-03-18 13:05:57 +00:00
23 lines
484 B
SCSS
23 lines
484 B
SCSS
/// menu.scss -*- Mode: scss; indent-tabs-mode: nil; basic-offset: 2 -*-
|
|
@import 'extends';
|
|
|
|
md-card {
|
|
md-card-actions:not(.layout-column) {
|
|
.md-menu {
|
|
padding: 0; // don't add padding so all icon buttons are of the same height
|
|
}
|
|
}
|
|
}
|
|
|
|
md-sidenav {
|
|
md-list {
|
|
.md-menu {
|
|
padding: 0; // don't add padding so all icon buttons are of the same height
|
|
opacity: 1;
|
|
transition: $swift-ease-in;
|
|
&.ng-hide {
|
|
opacity: 0;
|
|
}
|
|
}
|
|
}
|
|
} |