diff options
| author | 2019-10-14 21:58:48 +1000 | |
|---|---|---|
| committer | 2019-10-14 21:58:48 +1000 | |
| commit | 03d5a4c9b4240366c418ab4ac99be517788e2f13 (patch) | |
| tree | c96b56d22411721fd5ba0eba17dc96cf23971689 /pydis_site/static/css/base/base.css | |
| parent | Merge pull request #282 from python-discord/upgrade-postgresql-to-12 (diff) | |
| parent | Merge branch 'master' into #201-django-allauth (diff) | |
Django Allauth (#201) (#274)
Django Allauth (#201)
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; +} + |