refactor: перевёл цвета на CSS-переменные
This commit is contained in:
@@ -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; }
|
||||
|
||||
Reference in New Issue
Block a user