Skip to content

Commit

Permalink
style(EmptyState): update max-width and max-height for improved respo…
Browse files Browse the repository at this point in the history
…nsiveness
  • Loading branch information
JoannaSikora committed Jan 22, 2025
1 parent c4882fb commit 1e67f5c
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -29,9 +29,9 @@ $base-class: 'empty-state';
margin-bottom: var(--spacing-6);
border-radius: var(--radius-4);
width: auto;
max-width: 600px;
max-width: min(100%, 600px);
height: auto;
max-height: 300px;
max-height: min(100%, 300px);
object-fit: contain;
}

Expand Down

0 comments on commit 1e67f5c

Please sign in to comment.