mirror of
https://github.com/ruisaraiva19/favycon.git
synced 2026-09-12 19:51:07 +05:00
* feat: upgrade dependencies * chore: update linter and CI workflows * chore: upgrade browserslist
68 lines
934 B
SCSS
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;
|
|
}
|
|
}
|