From 844898ac91940e214d94cdcf27facaa611e082be Mon Sep 17 00:00:00 2001 From: John Doe Date: Sat, 9 Sep 2023 16:44:18 +0300 Subject: [PATCH] =?UTF-8?q?=F0=9F=8E=A8=20Improve=20styling=20for=20the=20?= =?UTF-8?q?header=20background=20=F0=9F=8C=9F=20Enhance=20the=20visual=20a?= =?UTF-8?q?ppeal=20of=20the=20header=20background=20with=20custom=20colors?= =?UTF-8?q?=20and=20filters.=20=F0=9F=8E=A8=20Refactor=20code=20by=20impor?= =?UTF-8?q?ting=20theme=20colors=20and=20custom=20styles.=20=F0=9F=93=85?= =?UTF-8?q?=20Add=20date=20picker=20styles=20to=20improve=20UI=20consisten?= =?UTF-8?q?cy.=20=F0=9F=94=A7=20Update=20header=20import=20to=20ensure=20p?= =?UTF-8?q?roper=20functionality.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/styles/_header.scss | 3 +++ src/styles/index.scss | 5 +++++ 2 files changed, 8 insertions(+) create mode 100644 src/styles/_header.scss create mode 100644 src/styles/index.scss diff --git a/src/styles/_header.scss b/src/styles/_header.scss new file mode 100644 index 0000000..24c84f4 --- /dev/null +++ b/src/styles/_header.scss @@ -0,0 +1,3 @@ +.nc-header-bg { + @apply bg-white/70 dark:bg-neutral-900/60 backdrop-blur-2xl backdrop-filter; +} diff --git a/src/styles/index.scss b/src/styles/index.scss new file mode 100644 index 0000000..7a0b756 --- /dev/null +++ b/src/styles/index.scss @@ -0,0 +1,5 @@ +@import "./_theme_colors"; +@import "./_theme_custom"; +@import "./_dates_picker"; +// +@import "./header";