chore: first commit

This commit is contained in:
Daniil
2026-02-17 23:36:55 +03:00
parent 2e4820ac91
commit 674d5d735b
116 changed files with 327 additions and 150 deletions
@@ -0,0 +1,75 @@
.drawer {
background: transparent;
}
.root {
display: flex;
flex-direction: column;
min-width: 220px;
height: 100%;
padding: 16px 12px;
background: #ffffff;
border-radius: 12px 12px 0 0;
box-shadow: 0 10px 30px rgba(12, 18, 38, 0.08);
}
.header {
margin-bottom: 12px;
font-weight: 700;
font-size: 16px;
color: #0c1226;
}
.list {
list-style: none;
margin: 0;
padding: 0;
display: flex;
flex-direction: column;
gap: 6px;
}
.item {
display: flex;
}
.link,
.button {
display: inline-flex;
align-items: center;
gap: 10px;
width: 100%;
padding: 10px 12px;
border: none;
border-radius: 10px;
background: transparent;
color: #0c1226;
text-decoration: none;
font-weight: 600;
font-size: 14px;
line-height: 1.4;
cursor: pointer;
transition: background-color 0.2s ease, color 0.2s ease;
}
.link:hover,
.button:hover,
.link:focus-visible,
.button:focus-visible {
outline: none;
background-color: #f4f6fb;
}
.icon {
display: inline-flex;
width: 18px;
height: 18px;
color: #5a6473;
}
.label {
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}