summaryrefslogtreecommitdiff
path: root/_sass
diff options
context:
space:
mode:
authorjeffreytse <jeffreytse.mail@gmail.com>2020-09-17 11:28:44 +0800
committerjeffreytse <jeffreytse.mail@gmail.com>2020-09-17 11:28:44 +0800
commita488bece128ba07dc6d14c330174ab129fc274fd (patch)
treecd5d429a7bd7dc8ffff920f16bf4946b5d0bda66 /_sass
parent5c26a066e581e3455a8f518cc0debefdab2572c4 (diff)
fix: wrong banner text padding on palm device
Diffstat (limited to '_sass')
-rw-r--r--_sass/yat/_layout.scss11
1 files changed, 9 insertions, 2 deletions
diff --git a/_sass/yat/_layout.scss b/_sass/yat/_layout.scss
index 041bbe2..66ec4d2 100644
--- a/_sass/yat/_layout.scss
+++ b/_sass/yat/_layout.scss
@@ -590,8 +590,7 @@ html {
> :nth-child(1) {
@include relative-font-size(3.9);
letter-spacing: -1px;
- line-height: 0.95;
- margin-bottom: 18px;
+ margin-bottom: 16px;
font-weight: normal;
transition: 0.2s all;
@@ -614,6 +613,10 @@ html {
@include relative-font-size(1.525);
color: #ffffffcc;
padding-right: 280px;
+
+ @include media-query($on-palm) {
+ padding-right: 0;
+ }
}
.post-meta {
@@ -628,6 +631,10 @@ html {
color: #999;
padding-right: 280px;
+ @include media-query($on-palm) {
+ padding-right: 0;
+ }
+
.post-tag {
@include relative-font-size(1.125);
display: inline-block;