Skip to content
This repository has been archived by the owner on Dec 11, 2019. It is now read-only.

Commit

Permalink
Fix dialog height for bravery panel
Browse files Browse the repository at this point in the history
Auditors: @bsclifton

Fix #6338
  • Loading branch information
bbondy committed Dec 20, 2016
1 parent b7dad9e commit ce25254
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
4 changes: 2 additions & 2 deletions less/forms.less
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ select {
padding: 10px 30px;
position: absolute;
text-align: left;
top: 30px;
top: @dialogTopOffset;
}

.releaseNotes {
Expand Down Expand Up @@ -331,7 +331,7 @@ select {
cursor: default;
color: #3B3B3B;
overflow-y: auto;
max-height: 100%;
max-height: calc(~'100% - @{dialogTopOffset}');

.clickable {
color: #5B5B5B;
Expand Down
1 change: 1 addition & 0 deletions less/variables.less
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@
@borderRadiusModal: 8px;
@bigBorderRadius: 14px;
@privateTabBackground: #392e54;
@dialogTopOffset: 30px;

@bitcoinOrange: #f7931a;

Expand Down

0 comments on commit ce25254

Please sign in to comment.