Skip to content

Commit

Permalink
feat(ui): handle points in mobile device
Browse files Browse the repository at this point in the history
  • Loading branch information
fredericvilcot committed Dec 2, 2022
1 parent fbd9468 commit 39a332c
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion src/components/sidh/challenges.scss
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,11 @@
padding: 40px 0 0 40px;
line-height: 32px;

@media screen and (max-width: 1440px) {
@media screen and (max-width: 580px) {
padding: 20px 0;
}

@media screen and (min-width: 581px) and (max-width: 1440px) {
padding: 20px 0 0 20px;
}

Expand All @@ -124,6 +128,10 @@
font-family: 'Gotham light', sans-serif;
font-size: 28px;

&:nth-child(2) {
text-align: right;
}

@media screen and (max-width: 1100px) {
font-size: 20px;
}
Expand Down

0 comments on commit 39a332c

Please sign in to comment.