diff options
author | Oscar Najera <hi@oscarnajera.com> | 2023-10-15 17:32:14 +0200 |
---|---|---|
committer | Oscar Najera <hi@oscarnajera.com> | 2023-10-15 17:32:14 +0200 |
commit | a909a44cc4477b30dec8c5889d9c4d4e153058a0 (patch) | |
tree | 6fe4a04403dbeb199c760aef4de8719007ae573e /assets | |
parent | 6fbfa9f0f71f5fe17ed3999322badacf54d7cbbf (diff) | |
download | hugo-minimalist-theme-a909a44cc4477b30dec8c5889d9c4d4e153058a0.tar.gz hugo-minimalist-theme-a909a44cc4477b30dec8c5889d9c4d4e153058a0.tar.bz2 hugo-minimalist-theme-a909a44cc4477b30dec8c5889d9c4d4e153058a0.zip |
Image thumbnail to 20rem
Diffstat (limited to 'assets')
-rw-r--r-- | assets/scss/style.scss | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/assets/scss/style.scss b/assets/scss/style.scss index da1db94..e4c8ad0 100644 --- a/assets/scss/style.scss +++ b/assets/scss/style.scss @@ -136,6 +136,15 @@ color: #fff !important; background-color: #79c753 !important; } +// Extra sizes +.mw-20 { + max-width: 20rem; +} +@media screen and (min-width: 30em) { + .mw-20-ns { + max-width: 20rem; + } +} // HERO #hero { text-shadow: 2px 2px 3px black; |