feat(home): add disclaimer under social links on home page (#175)

This commit is contained in:
Dillon
2020-03-17 01:03:08 +08:00
committed by GitHub
parent 41c2d3a38e
commit 0ca8a4c85b
14 changed files with 581 additions and 549 deletions

View File

@@ -10,7 +10,7 @@
-ms-transform: translateY(if($posts, 0, 16vh));
-o-transform: translateY(if($posts, 0, 16vh));
transform: translateY(if($posts, 0, 16vh));
padding: if($posts, 2rem, 0) 0;
padding: if($posts, 2rem, 0) 0 .5rem;
text-align: center;
.home-avatar {
@@ -43,15 +43,15 @@
}
}
.home-description {
.home-subtitle {
font-size: 1rem;
font-weight: normal;
margin: 0;
padding: .4rem;
}
.home-social-links {
padding: .6rem 0;
.social-links {
padding: .4rem 0;
a, i {
font-size: 1.6rem;
@@ -63,6 +63,19 @@
padding: 0 .25rem;
}
}
.home-disclaimer {
font-size: 1rem;
line-height: 1.4rem;
font-weight: normal;
margin: 0;
padding: .4rem;
color: $global-font-secondary-color;
.dark-theme & {
color: $global-font-secondary-color-dark;
}
}
}
}