Update header.php to include custom stylesheet: Added a new custom.css file for additional styling alongside the main stylesheet, enhancing the design flexibility of the application.

This commit is contained in:
𝓜𝓪𝓬𝓮™
2026-04-02 15:47:03 +02:00
parent 74e82e4f8d
commit a166f90668
2 changed files with 14 additions and 1 deletions

View File

@@ -0,0 +1,12 @@
.btn-tertiary {
color: var(--text-primary);
background: transparent;
border: 1px solid rgba(255, 255, 255, 0.25);
transition: all 0.3s ease;
}
.btn-tertiary:hover {
border-color: var(--primary-color);
color: var(--primary-color);
background: rgba(255, 81, 249, 0.08);
}