diff --git a/demo-shell/src/app/app.component.scss b/demo-shell/src/app/app.component.scss index b554b878f8..f46c8c01f6 100644 --- a/demo-shell/src/app/app.component.scss +++ b/demo-shell/src/app/app.component.scss @@ -33,3 +33,18 @@ width: 52px; } } + +@media (max-width: 425px) { + adf-content-node-selector { + .adf-content-node-selector-content-list { + .adf-data-table-cell { + display: none; + } + + .adf-data-table-cell:first-child, + .adf-data-table-cell:nth-child(2) { + display: table-cell; + } + } + } +} diff --git a/demo-shell/src/app/components/files/files.component.scss b/demo-shell/src/app/components/files/files.component.scss index 198feeded8..8438978db8 100644 --- a/demo-shell/src/app/components/files/files.component.scss +++ b/demo-shell/src/app/components/files/files.component.scss @@ -146,4 +146,12 @@ adf-document-list ::ng-deep .adf-datatable-selected > svg { width: 100%; } } + + file-uploading-dialog ::ng-deep .upload-dialog { + width: 80%; + + & ::ng-deep adf-file-uploading-list ::ng-deep adf-file-uploading-list-row .adf-file-uploading-row__group { + min-width: 0; + } + } }