diff options
author | Bryan Newbold <bnewbold@robocracy.org> | 2019-01-31 18:14:29 -0800 |
---|---|---|
committer | Bryan Newbold <bnewbold@robocracy.org> | 2019-02-01 11:41:16 -0800 |
commit | c83505069599fd70e5fb062519a20f07ecd84b62 (patch) | |
tree | c01757806c51cc8d084045e903a169b190751839 | |
parent | 50a2774a02993b36838e4672d395a314233c4f16 (diff) | |
download | fatcat-c83505069599fd70e5fb062519a20f07ecd84b62.tar.gz fatcat-c83505069599fd70e5fb062519a20f07ecd84b62.zip |
fix light grey bars in header CSS
-rw-r--r-- | python/fatcat_web/templates/base.html | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/python/fatcat_web/templates/base.html b/python/fatcat_web/templates/base.html index cce841e5..43e33f6a 100644 --- a/python/fatcat_web/templates/base.html +++ b/python/fatcat_web/templates/base.html @@ -8,6 +8,10 @@ <meta name="referrer" content="origin-when-cross-origin"> <meta name="viewport" content="width=device-width, initial-scale=1"> <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/semantic-ui@2.3.2/dist/semantic.min.css"> + <style> + /* bnewbold: fix light grey bars in header */ + .ui.inverted.menu .item:before { background: none; } + </style> </head> <body style="margin-bottom: 100px; height: auto;"> |