favycon/components/header/index.module.scss
Rui Saraiva 785563a71c
feat: upgrade dependencies (#480)
* feat: upgrade dependencies

* chore: update linter and CI workflows

* chore: upgrade browserslist
2021-12-04 18:32:53 +00:00

68 lines
934 B
SCSS

@import '../../styles/variables.scss';
.root {
padding: 0;
}
.container {
height: 68px;
padding: 20px 20px 0;
margin: 0 auto;
@include breakpoint-md {
height: 74px;
padding: 26px 26px 0;
}
}
.header {
display: flex;
align-items: center;
justify-content: flex-end;
height: 100%;
@include breakpoint-md {
justify-content: space-between;
}
}
.logo {
@include breakpoint-md-up {
display: none;
}
}
.item {
background: $off-white;
border-radius: 16px;
box-shadow: 0 0 10px rgba($off-white, 0.5);
transition: all 0.2s ease;
@include breakpoint-md {
background: transparent;
box-shadow: none;
}
a {
display: flex;
align-items: center;
justify-content: center;
}
&:first-child {
svg {
width: 48px;
}
}
}
:global(.dark) .item {
background: $darker-black;
box-shadow: 0 0 10px rgba($darker-black, 0.5);
@include breakpoint-md {
background: transparent;
box-shadow: none;
}
}