Skip to content

Commit

Permalink
Optimize featured reviews for phones
Browse files Browse the repository at this point in the history
  • Loading branch information
depau committed Dec 25, 2023
1 parent 18d948d commit 6e0ccff
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 2 deletions.
2 changes: 1 addition & 1 deletion _config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,6 @@ store_links:
button: "/assets/img/get_on_fdroid.svg"

featured_reviews:
- "FOSS, 0$, does exactly what is says on the tin. What more do you want?"
- "It saved me many times. Thank you for making this."
- '"In the times of greater need it did the good deeds"'
- "FOSS, 0$, does exactly what is says on the tin. What more do you want?"
21 changes: 20 additions & 1 deletion _sass/_style.scss
Original file line number Diff line number Diff line change
Expand Up @@ -374,9 +374,28 @@ footer {
order: 0;
font-style: italic;

width: 150px;
width: 120px;
margin: 5px;

@media screen and (max-width: 359px) {
& {
width: 100%;
}
}

@media screen and (min-width: 400px) {
& {
width: 130px;
}
}

@media screen and (min-width: 500px) {
& {
width: 150px;
}
}


.material-symbols-outlined {
font-variation-settings: "FILL" 1, "wght" 400, "GRAD" 0, "opsz" 24;
}
Expand Down

0 comments on commit 6e0ccff

Please sign in to comment.