VIDA-NYU / reprozip-examples

Examples and demos for ReproZip
https://examples.reprozip.org/
16 stars 6 forks source link

Navbar is completely invisible on mobile #31

Closed remram44 closed 5 years ago

remram44 commented 5 years ago

If I compare to the main website, it's missing something like:

--- a/.bootstrap/css/custom.css
+++ b/.bootstrap/css/custom.css
@@ -42,6 +42,14 @@ main {
        background-color: blue;
 }

+.navbar-inverse .navbar-toggler {
+  border: 1px solid white;
+}
+
+.navbar-inverse .navbar-toggler-icon {
+  background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3e%3cpath stroke='rgba(255, 255, 255, 1)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
+}
+
 .nav.navbar-nav.ml-auto > .nav-item > .nav-link {
   font-size:2em;
 }

Though I'm not sure why this is in custom.css in the first place? Isn't it built into bootstrap?

remram44 commented 5 years ago

Fixed by 63d30e60