Skip to content

Commit

Permalink
ACS-6721 fix button visibility (#9530)
Browse files Browse the repository at this point in the history
Co-authored-by: DaryaBalvanovich <[email protected]>
  • Loading branch information
DaryaBalvanovich and DaryaBalvanovich authored Apr 11, 2024
1 parent ec508a7 commit 1bcc760
Showing 1 changed file with 14 additions and 3 deletions.
Original file line number Diff line number Diff line change
@@ -1,14 +1,25 @@
$dialog-title-height: 100px;
$dialog-information-height: 44px;
$dialog-buttons-height: 68px;

$dialog-list-height: calc(65vh - ($dialog-title-height + $dialog-information-height + $dialog-buttons-height));

.adf {
&-aspect-list-spinner,
&-aspect-list-container {
padding-top: 3px;
box-sizing: border-box;
}

&-aspect-list-spinner {
display: flex;
align-items: center;
justify-content: center;
min-height: 400px;
min-height: $dialog-list-height;
}

&-aspect-list-container {
padding-top: 3px;
height: 400px;
max-height: $dialog-list-height;
overflow: auto;
border: 1px solid var(--adf-theme-foreground-text-color-007);

Expand Down

0 comments on commit 1bcc760

Please sign in to comment.