aboutsummaryrefslogtreecommitdiff
path: root/src/components/desktop_nav
diff options
context:
space:
mode:
authorHenry Jameson <me@hjkos.com>2022-04-10 21:54:02 +0300
committerHenry Jameson <me@hjkos.com>2022-04-10 21:56:54 +0300
commit666498e7b76144b35d245d4b1c09e1dc62fac84b (patch)
tree264a71cac63d0708acd9d7ba8b048568d29fbd32 /src/components/desktop_nav
parentaa07b219c9ece77a8bf11d6dc0f36e12658c7c61 (diff)
fix main post form having hidden emoji picker
Diffstat (limited to 'src/components/desktop_nav')
-rw-r--r--src/components/desktop_nav/desktop_nav.scss8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/components/desktop_nav/desktop_nav.scss b/src/components/desktop_nav/desktop_nav.scss
index 1e731c70..3c2e70b5 100644
--- a/src/components/desktop_nav/desktop_nav.scss
+++ b/src/components/desktop_nav/desktop_nav.scss
@@ -9,7 +9,7 @@
.inner-nav {
display: grid;
- grid-template-rows: 50px;
+ grid-template-rows: var(--navbar-height);
grid-template-columns: 2fr auto 2fr;
grid-template-areas: "sitename logo actions";
box-sizing: border-box;
@@ -75,7 +75,7 @@
img {
display: inline-block;
- height: 50px;
+ height: var(--navbar-height);
}
}
@@ -101,8 +101,8 @@
.item {
flex: 1;
- line-height: 50px;
- height: 50px;
+ line-height: var(--navbar-height);
+ height: var(--navbar-height);
overflow: hidden;
display: flex;
flex-wrap: wrap;