Skip to content

Commit 04506c9

Browse files
committed
bigger boxes
1 parent ae1a73f commit 04506c9

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

internal/dev_server/ui/src/DebugSessionEventsPage.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ const DebugSessionEventsPage = () => {
4949

5050
if (loading) {
5151
return (
52-
<Box padding="2rem">
52+
<Box padding="2rem" width="100%">
5353
<Heading>Debug Session Events</Heading>
5454
<Box marginTop="1rem">
5555
<Text color="var(--lp-color-text-ui-secondary)">
@@ -68,7 +68,7 @@ const DebugSessionEventsPage = () => {
6868

6969
if (error) {
7070
return (
71-
<Box padding="2rem">
71+
<Box padding="2rem" width="100%">
7272
<Heading>Debug Session Events</Heading>
7373
<Box marginTop="1rem">
7474
<Text color="var(--lp-color-text-ui-secondary)">
@@ -88,7 +88,7 @@ const DebugSessionEventsPage = () => {
8888
}
8989

9090
return (
91-
<Box padding="2rem">
91+
<Box padding="2rem" width="100%">
9292

9393
<Box display="flex" justifyContent="space-between" alignItems="center" marginBottom="1rem">
9494
<Box>

internal/dev_server/ui/src/DebugSessionsPage.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ const DebugSessionsPage = () => {
5353

5454
if (loading) {
5555
return (
56-
<Box padding="2rem">
56+
<Box padding="2rem" width="100%">
5757
<Heading>Debug Sessions</Heading>
5858
<Box marginTop="1rem">
5959
<ProgressBar isIndeterminate />
@@ -67,7 +67,7 @@ const DebugSessionsPage = () => {
6767

6868
if (error) {
6969
return (
70-
<Box padding="2rem">
70+
<Box padding="2rem" width="100%">
7171
<Heading>Debug Sessions</Heading>
7272
<Box marginTop="1rem">
7373
<Alert kind="error">
@@ -82,7 +82,7 @@ const DebugSessionsPage = () => {
8282
}
8383

8484
return (
85-
<Box padding="2rem">
85+
<Box padding="2rem" width="100%">
8686
<Box display="flex" justifyContent="space-between" alignItems="center" marginBottom="1rem">
8787
<Heading>Debug Sessions</Heading>
8888
<Text color="var(--lp-color-text-ui-secondary)">

0 commit comments

Comments
 (0)