Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/kdevo/osprey-delight.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorkdevo <kdevo@users.noreply.github.com>2022-04-30 20:25:15 +0300
committerkdevo <kdevo@users.noreply.github.com>2022-04-30 20:29:36 +0300
commit0cb7ac0f03a566e664ea22c1fcaa12c1b2594aac (patch)
treec3ad10f1698fbe18a1c14a89d4ccc2194a5c592a
parentd777587682ffa2da154f064566f27abd3f20381e (diff)
feat(themes/dedark): hide navbar on mobile
-rw-r--r--assets/sass/themes/dedark/_custom.scss8
1 files changed, 7 insertions, 1 deletions
diff --git a/assets/sass/themes/dedark/_custom.scss b/assets/sass/themes/dedark/_custom.scss
index 5bc424c..3273fcf 100644
--- a/assets/sass/themes/dedark/_custom.scss
+++ b/assets/sass/themes/dedark/_custom.scss
@@ -1 +1,7 @@
-@import "../delight/custom" \ No newline at end of file
+@import "../delight/custom";
+
+nav {
+ @media (max-width: $mobile-breakpoint) {
+ opacity: 0;
+ }
+} \ No newline at end of file