style fix: handle long titles

long titles would overflow
- list editor
- info titles
- backstage view
- public view
This commit is contained in:
cv
2021-10-24 12:38:57 +02:00
parent 759dece70f
commit a638e5962c
6 changed files with 27 additions and 4 deletions
+12
View File
@@ -6,6 +6,8 @@
border: 1px solid rgba(0, 0, 0, 0.05);
border-radius: 4px;
padding: 8px;
max-width: 90%;
}
.main {
@@ -13,6 +15,8 @@
color: #ff7597;
display: flex;
justify-content: space-between;
max-width: 90%;
}
.header {
@@ -24,6 +28,12 @@
justify-content: space-between;
}
.labelContainer {
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
.label,
.emptyLabel {
padding: 0;
@@ -47,6 +57,8 @@
.notes {
color: #d69e2e;
overflow: hidden;
text-overflow: ellipsis;
}
.if {