diff --git a/src/scss/box.scss b/src/scss/box.scss
index 7aca9f44658..80158155e75 100644
--- a/src/scss/box.scss
+++ b/src/scss/box.scss
@@ -368,7 +368,7 @@
}
}
- .text, .detail {
+ .text:not(.no-ellipsis), .detail {
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
@@ -391,4 +391,12 @@
border-bottom: none;
}
}
+
+ &.full-list {
+ margin: 0;
+
+ .box-content {
+ border: none;
+ }
+ }
}
diff --git a/src/scss/misc.scss b/src/scss/misc.scss
index 4a2cd82d44a..eb35292d7e4 100644
--- a/src/scss/misc.scss
+++ b/src/scss/misc.scss
@@ -97,3 +97,11 @@ app-root > #loading {
width: 100%;
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;
+}