Merge pull request #3319 from poanetwork/vb-eliminate-horizontal-scroll

Eliminate horizontal scroll
pull/3323/head
Victor Baranov 4 years ago committed by GitHub
commit 13f76c1c41
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 1
      CHANGELOG.md
  2. 8
      apps/block_scout_web/assets/css/components/_navbar.scss

@ -12,6 +12,7 @@
- [#3261](https://github.com/poanetwork/blockscout/pull/3261) - Bridged tokens table - [#3261](https://github.com/poanetwork/blockscout/pull/3261) - Bridged tokens table
### Fixes ### Fixes
- [#3319](https://github.com/poanetwork/blockscout/pull/3319) - Eliminate horizontal scroll
- [#3314](https://github.com/poanetwork/blockscout/pull/3314) - Handle nil values from response of CoinGecko price API - [#3314](https://github.com/poanetwork/blockscout/pull/3314) - Handle nil values from response of CoinGecko price API
- [#3313](https://github.com/poanetwork/blockscout/pull/3313) - Fix xDai styles: invisible tokens on address - [#3313](https://github.com/poanetwork/blockscout/pull/3313) - Fix xDai styles: invisible tokens on address
- [#3312](https://github.com/poanetwork/blockscout/pull/3312) - Replace symbol for some tokens to be able to find price in CoinGecko for OmniBridge balance - [#3312](https://github.com/poanetwork/blockscout/pull/3312) - Replace symbol for some tokens to be able to find price in CoinGecko for OmniBridge balance

@ -152,13 +152,13 @@ $navbar-logo-width: auto !default;
} }
@include media-breakpoint-up(xl) { @include media-breakpoint-up(xl) {
width: 340px; width: 310px;
} }
@media (min-width: 1366px) { @media (min-width: 1366px) {
width: 380px; width: 380px;
} }
@media (min-width: 1440px) { @media (min-width: 1440px) {
width: 580px; width: 550px;
} }
} }
.input-group-append { .input-group-append {
@ -287,3 +287,7 @@ $navbar-logo-width: auto !default;
transition: none !important; transition: none !important;
} }
} }
.visually-hidden {
display: block;
}

Loading…
Cancel
Save