mirror of
https://github.com/task-17-lct/frontend.git
synced 2025-12-09 13:53:58 +03:00
24 lines
353 B
CSS
24 lines
353 B
CSS
.headerWrapper{
|
|
height: 100px;
|
|
padding: 10px 50px;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
width: calc(100%-100px);
|
|
}
|
|
|
|
.iconWrapper{
|
|
display: flex;
|
|
align-items: center;
|
|
gap:10px;
|
|
}
|
|
|
|
.headerIcon{
|
|
transition: 0.3s;
|
|
cursor:pointer
|
|
|
|
}
|
|
|
|
.headerIcon:hover{
|
|
transform: scale(1.05);
|
|
} |