Skip to content

Commit

Permalink
Merge pull request #3507 from poanetwork/vb-fix-mobile-view-balance-c…
Browse files Browse the repository at this point in the history
…ard-left-marin

Fix left margin of balance card in mobile view
  • Loading branch information
vbaranov authored Dec 3, 2020
2 parents 8c37f48 + f129c6f commit ad2a5ea
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 10 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
- [#3462](https://github.com/poanetwork/blockscout/pull/3462) - Display price for bridged tokens

### Fixes
- [#3507](https://github.com/poanetwork/blockscout/pull/3507) - Fix left margin of balance card in mobile view
- [#3506](https://github.com/poanetwork/blockscout/pull/3506) - Fix token trasfer's tile styles: prevent overlapping of long names
- [#3505](https://github.com/poanetwork/blockscout/pull/3505) - Fix Staking DApp first loading
- [#3433](https://github.com/poanetwork/blockscout/pull/3433) - Token balances and rewards tables deadlocks elimination
Expand Down
9 changes: 0 additions & 9 deletions apps/block_scout_web/assets/css/components/_card.scss
Original file line number Diff line number Diff line change
Expand Up @@ -34,9 +34,6 @@ $card-tab-icon-color-active: #fff !default;
.card-background-1 {
background-color: $card-background-1;
color: $card-background-1-text-color;
@include media-breakpoint-down(sm) {
margin-left: 15px;
}
a:not(.dropdown-item),
a:not(.dropdown-item):hover {
color: $card-background-1-text-color;
Expand Down Expand Up @@ -267,12 +264,6 @@ $card-tab-icon-color-active: #fff !default;
}
}

.mob-transaction {
@include media-breakpoint-down(sm) {
margin-left: 15px!important;
}
}

.implementation-container {
margin-top: 10px;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -271,7 +271,7 @@
</div>
<% end %>
<!-- Gas -->
<div class="card flex-grow-1 ml-0 ml-md-5 ml-lg-0 mob-transaction">
<div class="card flex-grow-1 ml-0 ml-md-5 ml-lg-0">
<div class="card-body card-body-flex-column-space-between">
<h2 class="card-title balance-card-title"> <%= gettext "Gas" %> </h2>
<div class="text-right">
Expand Down

0 comments on commit ad2a5ea

Please sign in to comment.