Skip to content

Commit

Permalink
Update Page Buttons (#3083)
Browse files Browse the repository at this point in the history
  • Loading branch information
jameskerr authored Jun 6, 2024
1 parent 5679486 commit 64f50eb
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
4 changes: 4 additions & 0 deletions apps/zui/src/css/_utilities.scss
Original file line number Diff line number Diff line change
Expand Up @@ -214,3 +214,7 @@
.nowrap {
white-space: nowrap;
}

.flex-nowrap {
flex-wrap: nowrap;
}
2 changes: 1 addition & 1 deletion apps/zui/src/views/update-window/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ export function UpdateWindow() {
/>
)}
</main>
<footer className={classNames(styles.footer, "repel")}>
<footer className={classNames(styles.footer, "repel", "flex-nowrap")}>
{data.button && (
<button onClick={data.button[1] as any} className="button">
{data.button[0] as string}
Expand Down

0 comments on commit 64f50eb

Please sign in to comment.