Add responsiveness to navbar logo and submit page

This commit is contained in:
2019-12-08 22:21:18 -05:00
parent b52ae35976
commit 54daec0ebd
6 changed files with 60 additions and 32 deletions
+11
View File
@@ -7177,6 +7177,17 @@ a.text-dark:hover, a.text-dark:focus {
color: inherit;
border-color: #dee2e6; } }
.navbar-brand img {
width: 140px; }
@media (min-width: 768px) {
.navbar-brand img {
width: 175px; } }
@media (min-width: 992px) {
.navbar-brand img {
width: 205px; } }
/*
$bgDefault: $dark;
File diff suppressed because one or more lines are too long
+14
View File
@@ -1,6 +1,20 @@
@import "bootstrap_variables_leafweb";
@import "bootstrap/bootstrap.scss";
.navbar-brand img {
width: 140px;
}
@include media-breakpoint-up(md) {
.navbar-brand img {
width: 175px;
}
}
@include media-breakpoint-up(lg) {
.navbar-brand img {
width: 205px;
}
}
/*
$bgDefault: $dark;