Skip to content
Snippets Groups Projects
Unverified Commit 30e17961 authored by Samuel Couillard's avatar Samuel Couillard Committed by GitHub
Browse files

Minor fixes for mobile styling (#5347)


* Minor fixes for mobile styling

* typo

* typo

* Update application.bootstrap.scss

---------

Co-authored-by: default avatarAhmad Farhat <ahmad.farhat@blindsidenetworks.com>
parent 1d2d16c9
Branches
Tags
No related merge requests found
...@@ -67,10 +67,12 @@ body { ...@@ -67,10 +67,12 @@ body {
color: silver; color: silver;
} }
// TODO - samuel: make responsive/add breakpoints
.btn { .btn {
min-width: $button-min-width;
white-space: nowrap; white-space: nowrap;
@include media-breakpoint-up(sm) {
min-width: $button-min-width;
}
} }
.btn-sm { .btn-sm {
...@@ -196,7 +198,6 @@ input.search-bar { ...@@ -196,7 +198,6 @@ input.search-bar {
#footer { #footer {
margin-top: $footer-buffer-height; margin-top: $footer-buffer-height;
max-height: $footer-height;
#footer-container { #footer-container {
border-top: 1px solid #d0d5dd; border-top: 1px solid #d0d5dd;
...@@ -206,6 +207,10 @@ input.search-bar { ...@@ -206,6 +207,10 @@ input.search-bar {
color: var(--brand-color) !important; color: var(--brand-color) !important;
text-decoration: none !important; text-decoration: none !important;
} }
@include media-breakpoint-up(sm) {
max-height: $footer-height;
}
} }
.danger-light-button{ .danger-light-button{
...@@ -423,7 +428,6 @@ input.search-bar { ...@@ -423,7 +428,6 @@ input.search-bar {
background: white !important; background: white !important;
color: black !important; color: black !important;
border-color: gainsboro !important; border-color: gainsboro !important;
min-width: 260px;
text-align: left; text-align: left;
&:hover, &:focus, &:active { &:hover, &:focus, &:active {
...@@ -436,8 +440,10 @@ input.search-bar { ...@@ -436,8 +440,10 @@ input.search-bar {
} }
} }
.dropdown-menu { button, .dropdown-menu {
min-width: 260px; @include media-breakpoint-up(sm) {
min-width: 300px;
}
} }
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment