Skip to content

Commit

Permalink
fix: overflow of UI issues (#4759)
Browse files Browse the repository at this point in the history
* fix: overflow of UI issues

* fix more
  • Loading branch information
mikeldking authored Sep 26, 2024
1 parent fcd35fc commit 4e68274
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions app/src/GlobalStyles.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ export function GlobalStyles() {
font-family: "Roboto";
font-size: ${theme.typography.sizes.medium.fontSize}px;
margin: 0;
overflow: hidden;
#root,
#root > div[data-overlay-container="true"],
#root > div[data-overlay-container="true"] > .ac-theme {
Expand Down
2 changes: 1 addition & 1 deletion app/src/pages/settings/UsersCard.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ export function UsersCard() {
<Card
title="Users"
variant="compact"
bodyStyle={{ padding: 0 }}
bodyStyle={{ padding: 0, overflowX: "auto" }}
extra={
<Button
onClick={() => {
Expand Down

0 comments on commit 4e68274

Please sign in to comment.