break words on password history

This commit is contained in:
Kyle Spearrin 2018-04-13 23:05:31 -04:00
parent 88cde6bfdc
commit 1bc1e86a53
3 changed files with 13 additions and 9 deletions

View File

@ -20,7 +20,7 @@
<div class="box-content-row box-content-row-flex" *ngFor="let h of history">
<div class="row-main">
<div class="row-main-content">
<span class="text monospaced no-ellipsis">
<span class="text monospaced no-ellipsis break-all">
{{h.password}}
</span>
<span class="detail">{{h.date | date:'medium'}}</span>

View File

@ -68,6 +68,10 @@ p.lead {
padding-bottom: 0 !important;
}
.break-all {
word-break: break-all;
}
[hidden] {
display: none !important;
}
@ -124,14 +128,6 @@ app-root > #loading {
color: $text-muted;
}
app-password-generator .password-block {
font-size: $font-size-large;
word-break: break-all;
font-family: $font-family-monospace;
text-align: center;
margin: 20px;
}
app-vault-icon {
display: flex;
}

View File

@ -7,3 +7,11 @@ app-sync {
}
}
}
app-password-generator .password-block {
font-size: $font-size-large;
word-break: break-all;
font-family: $font-family-monospace;
text-align: center;
margin: 20px;
}