mirror of
https://github.com/ruisaraiva19/favycon.git
synced 2026-09-14 11:06:21 +05:00
* feat(drag-and-drop): add drag and drop wizard * chore(seo): update seo share image url * improvement(upload): add download step 3 * improvement(loading): improve loading and add transitions * improvement: add pwa support, clipboard and animations * improvement(seo): add html lang and update title * fix(button): fix button font family
38 lines
552 B
SCSS
38 lines
552 B
SCSS
@import '../../styles/variables.scss';
|
|
|
|
.root {
|
|
padding: 0;
|
|
}
|
|
|
|
.container {
|
|
max-width: 1440px;
|
|
height: 68px;
|
|
padding: 20px 20px 0 20px;
|
|
margin: 0 auto;
|
|
}
|
|
|
|
.header {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
height: 100%;
|
|
}
|
|
|
|
.item {
|
|
background: $off-white;
|
|
border-radius: 16px;
|
|
box-shadow: 0 0 10px rgba($off-white, 0.5);
|
|
transition: all 0.2s ease;
|
|
|
|
a {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
}
|
|
}
|
|
|
|
.dark {
|
|
background: $darker-black;
|
|
box-shadow: 0 0 10px rgba($darker-black, 0.5);
|
|
}
|