fix: 404 + dry up styles
This commit is contained in:
parent
984773793d
commit
ef133b7dca
2 changed files with 12 additions and 8 deletions
|
@ -82,4 +82,5 @@
|
|||
/posts/2022/simple-api-fetch-hooks-with-swr/ /posts/2022/simple-data-fetching-with-custom-react-hooks-and-swr/ 301
|
||||
/posts/2023/drying-up-now-page-templates-eleventy/ /posts/2023/drying-up-now-page-templates-and-normalizing-data-in-eleventy/ 301
|
||||
/posts/2023/hacking-together-a-tweeklyfm-replacement.html /posts/2023/hacking-together-a-tweeklyfm-replacement/ 301
|
||||
/posts/2024/setting-up-image-transforms-in-eleventy.html /posts/2024/setting-up-image-transforms-in-eleventy 301
|
||||
/posts/2024/setting-up-image-transforms-in-eleventy.html /posts/2024/setting-up-image-transforms-in-eleventy 301
|
||||
/posts/2023/displaying-listening-data-from-apple-music-using-musickitjs.html /posts/2023/displaying-listening-data-from-apple-music-using-musickitjs 301
|
||||
|
|
|
@ -1,3 +1,11 @@
|
|||
:root {
|
||||
--progress-bar-width: 50%;
|
||||
|
||||
@media screen and (min-width: 768px) {
|
||||
--progress-bar-width: 75%;
|
||||
}
|
||||
}
|
||||
|
||||
:is(.book-entry, .book-focus) img {
|
||||
height: auto;
|
||||
aspect-ratio: var(--aspect-ratio-vertical);
|
||||
|
@ -38,12 +46,11 @@
|
|||
}
|
||||
|
||||
& .progress-bar-wrapper {
|
||||
max-width: 75%;
|
||||
max-width: var(--progress-bar-width);
|
||||
margin-bottom: 0;
|
||||
|
||||
@media screen and (min-width: 768px) {
|
||||
margin-top: 0;
|
||||
max-width: 50%;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -76,11 +83,7 @@
|
|||
}
|
||||
|
||||
& .progress-bar-wrapper {
|
||||
max-width: 50%;
|
||||
|
||||
@media screen and (min-width: 768px) {
|
||||
max-width: 75%;
|
||||
}
|
||||
max-width: var(--progress-bar-width);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Reference in a new issue