Skip to content

Commit

Permalink
Merge pull request #29 from Jittojoyes98/develop
Browse files Browse the repository at this point in the history
fix: the wrap issues different cases
  • Loading branch information
Jittojoyes98 authored Feb 14, 2024
2 parents d5f3715 + 30e1933 commit ab0231b
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 0 deletions.
6 changes: 6 additions & 0 deletions src/_styles/dashboard.scss
Original file line number Diff line number Diff line change
Expand Up @@ -116,6 +116,12 @@
min-height: 138px;
padding: 16px;
// border-bottom: 1px solid $widget-element-border;
p {
display: inline-block;
white-space: wrap;
overflow: hidden;
text-overflow: ellipsis;
}
}
.form-details-wrapper {
height: fit-content;
Expand Down
7 changes: 7 additions & 0 deletions src/_styles/editor.scss
Original file line number Diff line number Diff line change
Expand Up @@ -167,6 +167,13 @@
.input-text-handle-content-name {
display: flex;
align-items: center;
max-width: 200px;
p {
// display: block;
overflow: hidden;
white-space: nowrap;
text-overflow: ellipsis;
}
}
}

Expand Down
3 changes: 3 additions & 0 deletions src/_styles/theme.scss
Original file line number Diff line number Diff line change
Expand Up @@ -537,6 +537,9 @@ img {
.menu {
display: none;
}
.editor-order {
display: none;
}

.menu-dropdown {
display: block;
Expand Down

0 comments on commit ab0231b

Please sign in to comment.