mirror of
https://github.com/inverse-inc/sogo.git
synced 2026-02-26 19:56:23 +00:00
19 lines
368 B
SCSS
19 lines
368 B
SCSS
@import "extends";
|
|
|
|
$sg-grid-border-width-focused: 2px;
|
|
|
|
// sgToggleGrid directive
|
|
[sg-toggle-grid] {
|
|
md-grid-tile {
|
|
&.sg-icon-button {
|
|
@extend .md-button;
|
|
// Overwrite some styles of .md-button
|
|
border: 1px solid $colorGrey600;
|
|
border-radius: 2px;
|
|
color: $colorGrey700;
|
|
min-height: auto;
|
|
position: absolute;
|
|
}
|
|
}
|
|
}
|