Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/LukasJoswiak/etch.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLukas Joswiak <lukas@lukasjoswiak.com>2021-09-14 09:21:48 +0300
committerLukas Joswiak <lukas@lukasjoswiak.com>2021-09-14 09:21:48 +0300
commit9decabbbad1173f5ea056092a17a7e20d8ccd482 (patch)
tree054b39c91623b550d92c628aeab49a9e1720b230
parent0386588b4762c96b4e96cf4d07ab925b05fa405c (diff)
Fix timestamp render issue for low width screens
The font-size rule specified with ems was recursively applying to the <time> child, causing the date itself to be even smaller. I noticied this in Safari on iOS.
-rw-r--r--assets/css/main.css2
1 files changed, 1 insertions, 1 deletions
diff --git a/assets/css/main.css b/assets/css/main.css
index de93d75..a748210 100644
--- a/assets/css/main.css
+++ b/assets/css/main.css
@@ -143,7 +143,7 @@ main#content header#post-header h1 {
line-height: 1.15;
}
-main#content header#post-header div {
+main#content header#post-header > div {
display: block;
font-size: 0.85em;
color: #767676;