Skip to content

Commit

Permalink
fix(entity-empty-state): mobile style (#1867)
Browse files Browse the repository at this point in the history
Fix mobile state styles.
  • Loading branch information
kaiarrowood authored Dec 19, 2024
1 parent ab44904 commit 9b2f6f4
Showing 1 changed file with 5 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -171,9 +171,13 @@ onBeforeMount(async () => {
flex-direction: column;
font-family: $kui-font-family-text;
gap: $kui-space-90;
padding: $kui-space-130 $kui-space-150;
padding: $kui-space-130 $kui-space-0;
width: 100%;
@media (min-width: $kui-breakpoint-mobile) {
padding: $kui-space-130 $kui-space-150;
}
.empty-state-image {
margin-bottom: $kui-space-40;
}
Expand Down

0 comments on commit 9b2f6f4

Please sign in to comment.