Add responsiveness to navbar logo and submit page
This commit is contained in:
Vendored
+11
@@ -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;
|
||||
|
||||
+1
-1
File diff suppressed because one or more lines are too long
+14
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user