From a166f90668f6701c45354b53f4ebfde3722580d9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=F0=9D=93=9C=F0=9D=93=AA=F0=9D=93=AC=F0=9D=93=AE=E2=84=A2?= <71522630+theoneandonlymace@users.noreply.github.com> Date: Thu, 2 Apr 2026 15:47:03 +0200 Subject: [PATCH] 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. --- backend/includes/header.php | 3 ++- public/assets/css/custom.css | 12 ++++++++++++ 2 files changed, 14 insertions(+), 1 deletion(-) create mode 100644 public/assets/css/custom.css diff --git a/backend/includes/header.php b/backend/includes/header.php index 3686703..1c2093e 100644 --- a/backend/includes/header.php +++ b/backend/includes/header.php @@ -31,8 +31,9 @@ - + + diff --git a/public/assets/css/custom.css b/public/assets/css/custom.css new file mode 100644 index 0000000..6f9f7c4 --- /dev/null +++ b/public/assets/css/custom.css @@ -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); +}