summaryrefslogtreecommitdiff
path: root/posts.css
diff options
context:
space:
mode:
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 {