1
0
mirror of https://github.com/nostalgic-css/NES.css.git synced 2025-08-30 17:30:23 +02:00

Merge pull request #155 from nostalgic-css/responsive-demo-page

fix(style.css): fix margin and padding of body
This commit is contained in:
Trezy
2018-12-10 08:12:47 -06:00
committed by GitHub

View File

@@ -30,13 +30,6 @@ div.tables > .nes-table:first-child {
margin-bottom: 2rem;
}
@media screen and (max-width: 768px) {
div.tables > .nes-table {
max-width: 100%;
margin-right: 0;
}
}
.balloon.nes-container .nes-balloon {
max-width: 600px;
margin: 2rem 2rem;
@@ -93,3 +86,21 @@ div.tables > .nes-table:first-child {
.github-link > i.nes-octocat {
align-self: flex-end;
}
@media screen and (max-width: 768px) {
body {
padding: 0;
margin: 2rem 0.2rem;
}
div.tables > .nes-table {
max-width: 100%;
margin-right: 0;
}
.balloon.nes-container .nes-balloon {
max-width: 70%;
}
.github-link {
display: none;
}
}