1
0
mirror of https://github.com/Damillora/Yuika synced 2024-09-28 19:52:50 +00:00

Tweak tag color and author image size on mobile

This commit is contained in:
Damillora 2020-11-12 03:40:31 +07:00
parent 7360bcf294
commit b8e02c571e
2 changed files with 11 additions and 3 deletions

View File

@ -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;

View File

@ -1,7 +1,7 @@
{
"name": "yuika",
"description": "nanao.moe's blog theme",
"version": "2.2.3",
"version": "2.2.4",
"engines": {
"ghost-api": "v3"
},