Skip to content

Commit 5ba15dd

Browse files
committed
fix(hub): containers screen overflow issues (#2545)
<!-- Please make sure there is an issue that this PR is correlated to. --> ## Changes <!-- If there are frontend changes, please include screenshots. -->
1 parent d6bc547 commit 5ba15dd

File tree

3 files changed

+1114
-1123
lines changed
  • frontend
    • apps/hub/src/routes/_authenticated/_layout/projects/$projectNameId/environments/$environmentNameId
    • packages/components/src/matchmaker

3 files changed

+1114
-1123
lines changed

frontend/apps/hub/src/routes/_authenticated/_layout/projects/$projectNameId/environments/$environmentNameId/_v2.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ function RouteComponent() {
5858
className="h-full min-h-full max-h-full w-full min-w-full max-w-full"
5959
left={<Sidebar />}
6060
right={
61-
<div className="h-full overflow-auto">
61+
<div className="h-full w-full">
6262
<Outlet />
6363
</div>
6464
}

frontend/packages/components/src/matchmaker/lobby-region.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
1-
import { Icon, type IconProp, faComputer } from "@rivet-gg/icons";
1+
import { Icon, type IconProp, faComputer, faServer } from "@rivet-gg/icons";
22
import { AssetImage } from "../asset-image";
33
import { convertEmojiToUriFriendlyString } from "../lib/emoji";
44

55
export const REGION_ICON: Record<string, string | IconProp> = {
66
local: faComputer,
7-
unknown: "❓",
7+
unknown: faServer,
88
atlanta: "🇺🇸", // Atlanta
99
san_francisco: "🇺🇸", // San Francisco
1010
frankfurt: "🇩🇪", // Frankfurt

0 commit comments

Comments
 (0)