kgroad-frontend2/src/widgets/Header/HeaderLink/HeaderLink.scss
Vladislav Khorev e0e2f5470d renamed folders
2024-02-14 08:04:02 +00:00

32 lines
520 B
SCSS

.header-link {
width: 480px;
height: 100px;
position: absolute;
bottom: -10%;
z-index: 10;
font-size: 20px;
font-weight: 500;
line-height: 24px;
display: flex;
justify-content: center;
align-items: center;
gap: 30px;
border-radius: 15px;
background-color: #fff;
box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.2);
img {
width: 36px;
min-width: 36px;
height: 36px;
}
}
@media screen and (max-width: 550px) {
.header-link {
width: 95%;
bottom: -20%;
gap: 10px;
}
}