From 7ccff2cf3d4f7a96be2cf890093798067951fd2e Mon Sep 17 00:00:00 2001
From: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Thu, 14 Jul 2022 18:49:47 +0000
Subject: [PATCH] fix: styling on page-list for smaller screens
---
assets/styles/base.scss | 10 ++++++++--
1 files changed, 8 insertions(+), 2 deletions(-)
diff --git a/assets/styles/base.scss b/assets/styles/base.scss
index 7903f6e..db8f30d 100644
--- a/assets/styles/base.scss
+++ b/assets/styles/base.scss
@@ -169,7 +169,7 @@
background-color: transparent !important;
}
- & a[href$="#"] {
+ & a[href$="#"], &.active a {
opacity: 0.2;
}
}
@@ -506,7 +506,13 @@
& > .section {
display: flex;
align-items: center;
-
+
+ @media all and (max-width: 600px) {
+ & .tags {
+ display: none;
+ }
+ }
+
& h3 > a {
font-weight: 700;
margin: 0;
--
Gitblit v1.10.0