refactor: перевёл цвета на CSS-переменные

This commit is contained in:
2026-05-14 02:44:44 +03:00
parent a42a305a12
commit fbec0cc08a
20 changed files with 240 additions and 114 deletions
+2 -2
View File
@@ -45,7 +45,7 @@ defineProps<{
font-size: 14px;
}
.data-table th {
background: rgba(255,255,255,0.6);
background: var(--color-white-a60);
border-bottom: 2px solid var(--color-border-glass);
padding: 10px 14px;
font-weight: 600;
@@ -59,7 +59,7 @@ defineProps<{
}
.data-table tbody tr:last-child td { border-bottom: none; }
.data-table tbody tr:hover td {
background: rgba(34,197,94,0.05);
background: var(--color-primary-a05);
}
.align-left { text-align: left; }
.align-center { text-align: center; }