This commit is contained in:
Andrey Kondratev
2025-09-09 15:39:28 +05:00
parent 3b2d5ece24
commit d4debf9b63
33 changed files with 1274 additions and 9585 deletions

View File

@@ -111,6 +111,35 @@ body {
background: var(--tg-color-bg);
}
.tg-input-clear {
position: absolute;
right: var(--tg-spacing-sm);
top: 50%;
transform: translateY(-50%);
width: 32px;
height: 32px;
background: var(--tg-color-hint);
border: none;
border-radius: 50%;
color: var(--tg-color-bg);
font-size: var(--tg-font-size-sm);
cursor: pointer;
transition: all 0.2s ease;
display: flex;
align-items: center;
justify-content: center;
opacity: 0.6;
}
.tg-input-clear:hover {
background: var(--tg-color-destructive);
opacity: 1;
}
.tg-input-clear:active {
transform: translateY(-50%) scale(0.95);
}
/* Button components */
.tg-button {
position: relative;