Merge pull request #1795 from poanetwork/ab-fix-line-numbers-for-decompiled-contracts

fix line numbers for decompiled contracts
pull/1802/head
Victor Baranov 6 years ago committed by GitHub
commit 90a780d9e7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 1
      CHANGELOG.md
  2. 2
      apps/block_scout_web/assets/css/_code.scss

@ -18,6 +18,7 @@
- [#1769](https://github.com/poanetwork/blockscout/pull/1769) - add timestamp to block overview
- [#1768](https://github.com/poanetwork/blockscout/pull/1768) - fix first block parameter
- [#1778](https://github.com/poanetwork/blockscout/pull/1778) - Make websocket optional for realtime fetcher
- [#1795](https://github.com/poanetwork/blockscout/pull/1795) - fix line numbers for decompiled contracts
### Chore

@ -14,7 +14,7 @@ pre {
.pre-decompiled code::before {
content: counter(line);
display: inline-block;
width: 2.5em; /* Fixed width */
width: flex;
border-right: 1px solid #ddd;
padding: 0 .5em;
margin-right: .5em;

Loading…
Cancel
Save