Skip to content

Commit 514b45e

Browse files
author
Agney
committed
Reduce min width
1 parent 23da8e3 commit 514b45e

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

playground/src/utils/theme.ts

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -20,12 +20,12 @@ const lightModeColors = {
2020
},
2121
tabs: {
2222
tabHeader: {
23-
background: 'transparent',
23+
background: "transparent",
2424
color: `#000000`,
2525
borderBottom: `0.1em solid rgba(0, 0, 0, 0.1)`,
2626
},
2727
},
28-
}
28+
};
2929

3030
const darkModeColors = {
3131
container: {
@@ -56,13 +56,13 @@ const darkModeColors = {
5656
borderBottom: "0.2em solid rgb(255, 255, 255)",
5757
},
5858
},
59-
}
59+
};
6060

6161
export const theme = {
6262
container: {
6363
borderColor: "",
6464
minHeight: "20em",
65-
minWidth: "20em",
65+
minWidth: "15em",
6666
},
6767
error: {
6868
background: "",
@@ -85,19 +85,19 @@ export const theme = {
8585
borderBottom: "",
8686
panelBackground: "",
8787
background: "",
88-
color: '',
88+
color: "",
8989
},
9090
tabPanel: {
9191
phoneHeight: "10em",
9292
},
9393
selectedTab: {
94-
background: '',
94+
background: "",
9595
borderBottom: "0.2em solid rgb(0, 0, 0)",
9696
},
9797
},
9898
};
9999

100-
export type ColorMode = "light" | "dark"
100+
export type ColorMode = "light" | "dark";
101101

102102
/**
103103
* Get corresponding theme.

0 commit comments

Comments
 (0)