fix: standardize color format to lowercase hex in TabbedLayout and category styles

This commit is contained in:
David Haz
2025-07-15 20:30:04 +03:00
parent a1830ad324
commit f5a27bc86e
2 changed files with 3 additions and 3 deletions

View File

@@ -126,7 +126,7 @@ import ContributionSection from './ContributionSection.vue';
:deep(.p-tab[aria-selected='true'] .tab-header) { :deep(.p-tab[aria-selected='true'] .tab-header) {
background: #222; background: #222;
color: #27FF64; color: #27ff64;
} }
:deep(.p-tabpanels) { :deep(.p-tabpanels) {

View File

@@ -399,11 +399,11 @@ div:has(> .props-table) {
background-color: #0b0b0b; background-color: #0b0b0b;
border: 1px solid #333; border: 1px solid #333;
white-space: nowrap; white-space: nowrap;
color: #27FF64; color: #27ff64;
border-radius: 50px; border-radius: 50px;
font-size: 0.8rem; font-size: 0.8rem;
font-weight: 400; font-weight: 400;
padding: .6em 1.2em; padding: 0.6em 1.2em;
transition: 0.3s ease; transition: 0.3s ease;
user-select: none; user-select: none;
} }