diff options
Diffstat (limited to 'pydis_site/static/css/base/base.css')
-rw-r--r-- | pydis_site/static/css/base/base.css | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/pydis_site/static/css/base/base.css b/pydis_site/static/css/base/base.css index ce1503a3..3ca6b2a7 100644 --- a/pydis_site/static/css/base/base.css +++ b/pydis_site/static/css/base/base.css @@ -70,3 +70,21 @@ div.card.has-equal-height { #pydis-text { font-weight: bold; } + + +/* Navbar "more" menu should be on top of messages. I could not figure + * out a better way to fix this one without just applying a high z-index + * to everything - anyone have any better ideas? Does it matter since the + * navbar should be above everything anyway? + */ + +.navbar, .navbar * { + z-index: 1001; +} + +/* Fix for logout form submit button in navbar */ + +button.is-size-navbar-menu { + font-size: 14px; +} + |