mirror of
https://github.com/johannesjo/super-productivity.git
synced 2026-07-29 10:40:12 +00:00
46 lines
No EOL
714 B
SCSS
46 lines
No EOL
714 B
SCSS
main-header {
|
|
|
|
nav > .md-button {
|
|
// only use background color to speed up animation
|
|
transition-property: background-color !important;
|
|
|
|
&.md-icon-button {
|
|
margin: 0 3px;
|
|
|
|
@media(max-width: $layout-xs) {
|
|
margin: 0 1px;
|
|
}
|
|
}
|
|
}
|
|
|
|
nav {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
}
|
|
|
|
@media(max-width: $layout-xs) {
|
|
md-menu,
|
|
.sp-title {
|
|
flex-shrink: 1;
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
}
|
|
|
|
.sp-icon {
|
|
display: none;
|
|
}
|
|
|
|
md-menu {
|
|
.md-button,
|
|
button {
|
|
margin: 0;
|
|
min-width: 20px;
|
|
}
|
|
}
|
|
|
|
.md-toolbar-tools {
|
|
padding: 0 0 0 8px;
|
|
}
|
|
}
|
|
} |