This commit is contained in:
Daniil
2026-04-04 14:51:40 +03:00
parent 10a1d28f77
commit 0523ef3d72
191 changed files with 12065 additions and 2658 deletions
+10 -9
View File
@@ -5,20 +5,21 @@
}
.label {
font-size: 0.875rem;
font-weight: 500;
font-size: 0.8125rem;
font-weight: 600;
letter-spacing: -0.006em;
color: var(--text-primary);
}
.input {
width: 100%;
padding: 0.5rem 0.75rem;
padding: 0.5625rem 0.75rem;
background-color: var(--bg-default);
border: 1px solid var(--border-default);
border-radius: 0.5rem;
border-radius: var(--radius-sm);
font-size: 0.875rem;
color: var(--text-primary);
transition: all 0.15s ease;
transition: all var(--duration-normal) var(--ease-out);
&::placeholder {
color: var(--text-tertiary);
@@ -31,7 +32,7 @@
&:focus {
outline: none;
border-color: var(--purple-400);
box-shadow: 0 0 0 3px rgba(168, 85, 247, 0.1);
box-shadow: 0 0 0 4px hsla(262, 75%, 48%, 0.15);
}
&:disabled {
@@ -46,11 +47,11 @@
&:focus {
border-color: var(--color-danger);
box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
box-shadow: 0 0 0 4px rgba(220, 38, 38, 0.15);
}
}
.undertitle {
font-size: 0.75rem;
color: #6b7280;
}
color: var(--text-secondary);
}