summaryrefslogtreecommitdiff
path: root/posts.css
diff options
context:
space:
mode:
authormattkae <mattkae@protonmail.com>2022-12-14 21:16:18 -0500
committermattkae <mattkae@protonmail.com>2022-12-14 21:16:18 -0500
commitac5a69c5bdff67e67991ac5fdfae39f2d2f157d3 (patch)
treefebe86fefa7bfb37e224984cf084a4bcfcd74db5 /posts.css
parent902081f4811a149d2aedceb155e70266e45c9a76 (diff)
Updating css around resume and posts for small screens
Diffstat (limited to 'posts.css')
-rw-r--r--posts.css9
1 files changed, 8 insertions, 1 deletions
diff --git a/posts.css b/posts.css
index e9e5abc..169a18d 100644
--- a/posts.css
+++ b/posts.css
@@ -1,11 +1,18 @@
#tag_list {
- width: 100%;
+ width: 65%;
display: grid;
+ margin: auto;
grid-template-columns: repeat(3, 1fr);
column-gap: 8px;
row-gap: 8px
}
+@media (max-width: 767.98px) {
+ #tag_list {
+ width: 100%;
+ }
+}
+
#tag_list button {
padding: 16px;
cursor: pointer;