hugo-theme-hello-amigo/assets/scss/_header.scss
Sagi Dayan f013cc5660 Some scss refactoring
- logo cursor color value is now defined in _variables
 - removed some hard coded colors - using vars instead
2019-07-26 14:47:09 -04:00

43 lines
713 B
SCSS

.header {
background: $light-background-secondary;
display: flex;
align-items: center;
justify-content: center;
position: relative;
padding: 20px;
.dark-theme & {
background: $dark-background-secondary;
}
&__right {
display: flex;
flex-direction: row;
align-items: center;
@media #{$media-size-phone} {
flex-direction: row-reverse;
}
}
&__inner {
display: flex;
align-items: center;
justify-content: space-between;
margin: 0 auto;
width: 760px;
max-width: 100%;
}
}
.theme-toggle {
display: flex;
align-items: center;
justify-content: center;
line-height: 1;
cursor: pointer;
}
.theme-toggler {
fill: currentColor;
}