feat: add language dropdown

This commit is contained in:
Chebotov Nickolay
2026-02-06 15:20:25 +03:00
parent 0bb8090686
commit 50ab96c3ed
4 changed files with 97 additions and 18 deletions

View File

@@ -190,6 +190,41 @@
gap: $spacing-xs;
flex-shrink: 0;
.language-select-wrapper {
display: inline-flex;
align-items: center;
gap: 6px;
color: var(--text-secondary);
&:hover {
color: var(--text-primary);
}
}
.language-select-icon {
display: inline-flex;
align-items: center;
justify-content: center;
}
.language-select {
border: 1px solid var(--border-color);
border-radius: $radius-md;
padding: 10px 12px;
font-size: 14px;
background: var(--bg-primary);
color: var(--text-primary);
cursor: pointer;
height: 40px;
box-sizing: border-box;
&:focus {
outline: none;
border-color: var(--primary-color);
box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.15);
}
}
svg {
display: block;
}