Skip to content

Commit ab0231b

Browse files
authored
Merge pull request #29 from Jittojoyes98/develop
fix: the wrap issues different cases
2 parents d5f3715 + 30e1933 commit ab0231b

File tree

3 files changed

+16
-0
lines changed

3 files changed

+16
-0
lines changed

src/_styles/dashboard.scss

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -116,6 +116,12 @@
116116
min-height: 138px;
117117
padding: 16px;
118118
// border-bottom: 1px solid $widget-element-border;
119+
p {
120+
display: inline-block;
121+
white-space: wrap;
122+
overflow: hidden;
123+
text-overflow: ellipsis;
124+
}
119125
}
120126
.form-details-wrapper {
121127
height: fit-content;

src/_styles/editor.scss

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -167,6 +167,13 @@
167167
.input-text-handle-content-name {
168168
display: flex;
169169
align-items: center;
170+
max-width: 200px;
171+
p {
172+
// display: block;
173+
overflow: hidden;
174+
white-space: nowrap;
175+
text-overflow: ellipsis;
176+
}
170177
}
171178
}
172179

src/_styles/theme.scss

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -537,6 +537,9 @@ img {
537537
.menu {
538538
display: none;
539539
}
540+
.editor-order {
541+
display: none;
542+
}
540543

541544
.menu-dropdown {
542545
display: block;

0 commit comments

Comments
 (0)