10000 Remove superfluous space on smaller screens · sin/unifiedjs.github.io@f84fb3e · GitHub
[go: up one dir, main page]

Skip to content

Commit f84fb3e

Browse files
committed
Remove superfluous space on smaller screens
1 parent 2479e2f commit f84fb3e

File tree

1 file changed

+13
-3
lines changed

1 file changed

+13
-3
lines changed

src/index.css

Lines changed: 13 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -517,7 +517,7 @@ footer > :last-child {
517517
display: block;
518518
border-radius: 3px;
519519
margin: calc(2em + 2ex) 0;
520-
padding: calc(2em + 2ex);
520+
padding: calc(2em + 2ex) 0;
521521
background-color: transparent;
522522
box-shadow: 0 0 0 3px transparent;
523523
border-color: transparent;
@@ -630,8 +630,13 @@ footer > :last-child {
630630
}
631631

632632
.content {
633-
padding-left: 1rem;
634-
padding-right: 1rem;
633+
padding-left: 0;
634+
padding-right: 0;
635+
}
636+
637+
.thumbnail {
638+
margin-left: 0;
639+
margin-right: 0;
635640
}
636641

637642
.guide .window {
@@ -646,4 +651,9 @@ footer > :last-child {
646651
ul {
647652
padding-left: 1rem;
648653
}
654+
655+
.thumbnail-content,
656+
.guide p {
657+
text-align: left;
658+
}
649659
}

0 commit comments

Comments
 (0)
0