commit 3c7fab72443f73d7fcce0c8b2a1bd5ba0ef48e5e
parent 72fc774ee3c946af80767f76b80f5f40c774dd7c
Author: Amit Dutta <mail@amit.is-a.dev>
Date: Mon, 24 Aug 2026 18:42:27 +0530
Merge pull request #75 from notamitgamer/patch
Refine CSS styles for filter chips and tags
Diffstat:
1 file changed, 5 insertions(+), 3 deletions(-)
diff --git a/docs/tags.md b/docs/tags.md
@@ -82,7 +82,7 @@ Browse pages grouped by tag. Click a tag below to filter to just that one, or cl
border: 1px solid var(--vp-c-divider);
border-radius: 16px;
cursor: pointer;
- transition: color 0.15s ease, background 0.15s ease, border-color 0.15s ease;
+ /* Animation removed for instant hover snapping */
}
.bsc-filter-chip:hover {
@@ -205,12 +205,14 @@ Browse pages grouped by tag. Click a tag below to filter to just that one, or cl
list-style: none;
display: flex;
flex-wrap: wrap;
- align-items: flex-start;
- row-gap: 4px;
+ align-items: center; /* Aligns all text directly on the same baseline */
+ row-gap: 10px;
column-gap: 20px;
}
.bsc-tag-pages li {
+ margin: 0 !important; /* Forces VitePress list margins to zero */
+ padding: 0;
line-height: 1.6;
}