Move SCSS files from dir source to assets

This commit is contained in:
Djordje Atlialp 2019-02-22 15:19:21 +01:00
parent cc4a8df347
commit bd2a11d507
No known key found for this signature in database
GPG key ID: 94FF806E6BF61DD3
14 changed files with 0 additions and 0 deletions

43
assets/scss/_header.scss Normal file
View file

@ -0,0 +1,43 @@
.header {
background: #fafafa;
display: flex;
align-items: center;
justify-content: center;
position: relative;
padding: 20px;
.dark-theme & {
background: #252627;
}
&__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;
}