diff options
author | Starfall <us@starfall.systems> | 2023-09-05 19:09:31 -0500 |
---|---|---|
committer | Starfall <us@starfall.systems> | 2023-09-05 19:09:31 -0500 |
commit | 57255a83a785ab1e9525a7d4c58e00d17ce446ad (patch) | |
tree | 5b1657931f964629e315fff951b0087d0a4d7b9f /_includes | |
parent | c0d2f6523324cfbd096b1c108800e50a1b87bf9b (diff) |
more or less fix CSS on mobile
Diffstat (limited to '_includes')
-rw-r--r-- | _includes/base.njk | 2 | ||||
-rw-r--r-- | _includes/blogpost.njk | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/_includes/base.njk b/_includes/base.njk index e31e4dc..4c92740 100644 --- a/_includes/base.njk +++ b/_includes/base.njk @@ -18,7 +18,7 @@ title = "Starfall" <header> <h1>{{ title }}</h1> - <span style="float: right; user-select: none" id=decor-moons aria-hidden=true></span> + <div id=decor-moons aria-hidden=true></div> <nav aria-label=primary> {% set navs = collections.all | eleventyNavigation %} <ul>{%- for nav in navs %} diff --git a/_includes/blogpost.njk b/_includes/blogpost.njk index 94541c4..0867c95 100644 --- a/_includes/blogpost.njk +++ b/_includes/blogpost.njk @@ -18,7 +18,7 @@ title = "Starfall" <header> <h1>{{ title }}</h1> - <span style="float: right; user-select: none" id=decor-moons aria-hidden=true></span> + <span id=decor-moons aria-hidden=true></span> <nav aria-label=primary> {% set navs = collections.all | eleventyNavigation %} <ul>{%- for nav in navs %} |