diff options
author | Wolfgang Müller | 2024-10-02 18:47:06 +0200 |
---|---|---|
committer | Wolfgang Müller | 2024-10-02 18:47:06 +0200 |
commit | a0d5f91643a9581b0cf9c27ad89473117aadf899 (patch) | |
tree | 65b8dbfe395e2c21ffb1c6a4e0c14cd5c7b0de71 | |
parent | 542eae3d38148943d2a0ce6f4e94211a6b923823 (diff) | |
download | zunzuncito-a0d5f91643a9581b0cf9c27ad89473117aadf899.tar.gz |
sass: Hide avatar instead of date on smaller screens
This has two reasons: One, the date is more to readers than the avatar.
Two, we are wasting a gigantic 62px just for the padding used to display
the avatar. Clearly it has to go.
-rw-r--r-- | sass/style.sass | 9 |
1 files changed, 2 insertions, 7 deletions
diff --git a/sass/style.sass b/sass/style.sass index 9446b8f..b896384 100644 --- a/sass/style.sass +++ b/sass/style.sass @@ -238,14 +238,9 @@ figure > a @media (max-width: 480px) article:not(.single) - div.info > time - display: none - - div.info > h2.title::before - display: none article > header > img.avatar - width: 48px + display: none article - padding-left: 62px + padding-left: 0 |