Skip to content

Commit

Permalink
fix(#115): handle long text in delete modals
Browse files Browse the repository at this point in the history
  • Loading branch information
NicolasRichel committed Jan 31, 2022
1 parent 8ace361 commit 2f870d7
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -1,11 +1,13 @@
.files-delete-modal {
&__message {
width: 100%;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;

&__list {
width: 100%;
margin-right: auto;

&__item {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
v-for="file of files"
:key="file.id"
>
"{{ file.name }}"
<BIMDataTextBox :text="file.name" />
</li>
</ul>
</div>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,11 +1,13 @@
.models-delete-modal {
&__message {
width: 100%;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;

&__list {
width: 100%;
margin-right: auto;

&__item {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
v-for="model of models"
:key="model.id"
>
"{{ model.name }}"
<BIMDataTextBox :text="model.name" />
</li>
</ul>
</div>
Expand Down

0 comments on commit 2f870d7

Please sign in to comment.