From b8e02c571e4cc95a709f62a2515cbeb3e99ec6e9 Mon Sep 17 00:00:00 2001 From: Damillora Date: Thu, 12 Nov 2020 03:40:31 +0700 Subject: [PATCH] Tweak tag color and author image size on mobile --- assets/css/styles.css | 12 ++++++++++-- package.json | 2 +- 2 files changed, 11 insertions(+), 3 deletions(-) diff --git a/assets/css/styles.css b/assets/css/styles.css index 3663819..a11cf8f 100644 --- a/assets/css/styles.css +++ b/assets/css/styles.css @@ -335,14 +335,22 @@ footer { @apply bg-blue-700 w-auto inline-block px-2 py-1 text-white text-sm; } .tag-accent-color { - @apply inline-block rounded-full align-text-bottom h-16 w-16; + @apply inline-block rounded-full align-text-bottom h-12 w-12; } .author-header { @apply bg-red-700 w-auto inline-block px-2 py-1 text-white text-sm; } .author-image { - @apply inline-block rounded-full align-text-bottom h-16 w-16; + @apply inline-block rounded-full align-text-bottom h-12 w-12; +} +@screen md { + .tag-accent-color { + @apply h-16 w-16; + } + .author-image { + @apply h-16 w-16; + } } .author-list { @apply flex flex-row items-center my-2 py-2; diff --git a/package.json b/package.json index 3654930..f8b8aa4 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "yuika", "description": "nanao.moe's blog theme", - "version": "2.2.3", + "version": "2.2.4", "engines": { "ghost-api": "v3" },