Skip to content

Commit

Permalink
shoed ellipsis in datamodelbinding accordion (#13223)
Browse files Browse the repository at this point in the history
* showed ellipsis in datamodelbinding accordion
  • Loading branch information
JamalAlabdullah authored Jul 24, 2024
1 parent 6a020ec commit a924ae2
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,8 @@
}

.wrapper {
padding-top: var(--fds-spacing-2);
padding-bottom: var(--fds-spacing-2);
text-overflow: ellipsis;
overflow: hidden;
}
Original file line number Diff line number Diff line change
@@ -1,10 +1,22 @@
.selectDataModel {
width: 100%;
text-overflow: ellipsis;
overflow: hidden;
}

.displayTileContainer {
padding: 0;
padding-right: var(--fds-spacing-1);
}

.displayTileContainer > div {
display: block;
display: grid;
}

.displayTileContainer > div > p {
text-overflow: ellipsis;
overflow: hidden;
white-space: nowrap;
}

.selectDataModel {
Expand Down

0 comments on commit a924ae2

Please sign in to comment.