Dart backend update and upgrade, visual overhaul, additionally some Ñyqy updates that were meant for master branch #1

Merged
phundrak merged 38 commits from develop into master 2020-05-05 11:44:27 +00:00
1 changed files with 4 additions and 3 deletions
Showing only changes of commit f329e2b8fb - Show all commits

View File

@ -414,22 +414,23 @@ header {
#postamble {
display: grid;
grid-template-areas: 'author email date';
height: $postamble-height;
@media #{$switch-small-screen} {
grid-template-areas: 'author date' 'email email';
height: $postamble-height + 20px;
}
@media #{$switch-smaller-screen} {
grid-template-areas: 'author' 'date' 'email';
height: $postamble-height + 40px;
}
font-size: 0.8em;
align-content: space-evenly;
text-align: center;
p {
margin: 10px 0;
}
.author {
grid-area: author;
}