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,69 @@
.wrapper {
display: flex;
flex-direction: column;
gap: 0.375rem;
}
.label {
font-size: 0.875rem;
font-weight: 500;
color: #374151;
@media (prefers-color-scheme: dark) {
color: #e5e7eb;
}
}
.input {
width: 100%;
padding: 0.5rem 0.75rem;
background-color: white;
border: 1px solid #d1d5db;
border-radius: 0.5rem;
font-size: 0.875rem;
transition: all 0.15s ease;
&::placeholder {
color: #9ca3af;
}
&:hover:not(:disabled) {
border-color: #9ca3af;
}
&:focus {
outline: none;
border-color: var(--purple-400);
box-shadow: 0 0 0 3px rgba(168, 85, 247, 0.1);
}
&:disabled {
opacity: 0.5;
cursor: not-allowed;
background-color: #f3f4f6;
}
@media (prefers-color-scheme: dark) {
background-color: #1f1f1f;
border-color: #4b5563;
color: #f3f4f6;
&:hover:not(:disabled) {
border-color: #6b7280;
}
}
}
.error {
border-color: var(--color-danger);
&:focus {
border-color: var(--color-danger);
box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}
}
.undertitle {
font-size: 0.75rem;
color: #6b7280;
}