summaryrefslogtreecommitdiff
path: root/posts.css
diff options
context:
space:
mode:
authormattkae <mattkae@protonmail.com>2022-11-22 17:33:47 -0500
committermattkae <mattkae@protonmail.com>2022-11-22 17:33:47 -0500
commitd21ef9bf29465db18dce1ee6d4fcbdece655ba87 (patch)
treee3162fd55ad62730087c9743fe3b05a551d2acf2 /posts.css
parent76d7516960aa0ea570fa00000e83bfa283b2dbc2 (diff)
Some new tags, unused for now
Diffstat (limited to 'posts.css')
-rw-r--r--posts.css18
1 files changed, 12 insertions, 6 deletions
diff --git a/posts.css b/posts.css
index 58204c3..e9e5abc 100644
--- a/posts.css
+++ b/posts.css
@@ -1,14 +1,20 @@
#tag_list {
width: 100%;
- display: flex;
- flex-direction: row;
- align-items: center;
- column-gap: 4px;
+ display: grid;
+ grid-template-columns: repeat(3, 1fr);
+ column-gap: 8px;
+ row-gap: 8px
}
-#tag_list > button {
- padding: 8px;
+#tag_list button {
+ padding: 16px;
cursor: pointer;
+ border: 1px solid transparent;
+ border-radius: 3px;
+ font-family: inherit;
+ font-size: 16px;
+ width: 100%;
+ height: 100%;
}
#post_list {