1
0
mirror of https://github.com/trezor/trezor-wallet synced 2024-11-24 09:18:09 +00:00

css long instanceLabel overflow

This commit is contained in:
Szymon Lesisz 2018-05-15 16:53:19 +02:00
parent 2beaeff8ac
commit 27ca8ed37a
2 changed files with 25 additions and 2 deletions

View File

@ -539,13 +539,15 @@ aside {
flex-direction: column; flex-direction: column;
justify-content: space-evenly; justify-content: space-evenly;
font-size: 14px; font-size: 14px;
padding: 16px 0 16px 30px; padding: 16px 28px 16px 30px;
white-space: nowrap; white-space: nowrap;
border-top: 1px solid @color_divider; border-top: 1px solid @color_divider;
span { span {
display: block; display: block;
font-size: 12px; font-size: 12px;
color: @color_text_secondary; color: @color_text_secondary;
overflow: hidden;
text-overflow: ellipsis;
} }
} }

View File

@ -102,6 +102,11 @@
.confirm-address-unverified { .confirm-address-unverified {
width: 370px; width: 370px;
padding: 24px 48px; padding: 24px 48px;
h3 {
word-break: break-all;
}
button:not(.close-modal) { button:not(.close-modal) {
width: 100%; width: 100%;
margin-top: 12px; margin-top: 12px;
@ -113,10 +118,21 @@
width: 360px; width: 360px;
padding: 24px 48px; padding: 24px 48px;
h3 {
word-break: break-all;
}
p { p {
padding: 14px 0px; padding: 14px 0px;
} }
label {
display: block;
padding-bottom: 6px;
text-align: left;
color: @color_text_secondary;
}
button { button {
width: 100%; width: 100%;
margin-top: 12px; margin-top: 12px;
@ -139,7 +155,6 @@
} }
} }
.close-modal { .close-modal {
position: absolute; position: absolute;
top: 0; top: 0;
@ -217,6 +232,12 @@
.passphrase { .passphrase {
padding: 24px 48px; padding: 24px 48px;
h3 {
max-width: 260px;
word-break: break-all;
}
.row { .row {
position: relative; position: relative;
text-align: left; text-align: left;