Skip to content

Commit

Permalink
fix: 🐛 Make changelog responsive
Browse files Browse the repository at this point in the history
  • Loading branch information
EricLambrecht committed Mar 20, 2020
1 parent ab80f49 commit 5359ee5
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions src/components/core/ChangelogModal.vue
Original file line number Diff line number Diff line change
Expand Up @@ -47,13 +47,23 @@ export default {
font-size: 22px;
font-weight: bold;
margin: 30px 0 10px;
@media screen and (max-width: 768px) {
font-size: 20px;
margin: 24px 0 10px;
}
}
h3[id^='bug'],
h3[id^='feature'] {
font-size: initial;
font-weight: bold;
margin: 20px 0 10px;
@media screen and (max-width: 768px) {
font-size: 15px;
margin: 18px 0 10px;
}
}
h1,
Expand All @@ -68,6 +78,10 @@ export default {
ul {
font-size: 15px;
line-height: 1.5;
@media screen and (max-width: 768px) {
font-size: 13px;
}
}
ul {
Expand Down

0 comments on commit 5359ee5

Please sign in to comment.