Skip to content

Commit

Permalink
Reduce min width
Browse files Browse the repository at this point in the history
  • Loading branch information
Agney committed Jun 22, 2020
1 parent 23da8e3 commit 514b45e
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions playground/src/utils/theme.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,12 +20,12 @@ const lightModeColors = {
},
tabs: {
tabHeader: {
background: 'transparent',
background: "transparent",
color: `#000000`,
borderBottom: `0.1em solid rgba(0, 0, 0, 0.1)`,
},
},
}
};

const darkModeColors = {
container: {
Expand Down Expand Up @@ -56,13 +56,13 @@ const darkModeColors = {
borderBottom: "0.2em solid rgb(255, 255, 255)",
},
},
}
};

export const theme = {
container: {
borderColor: "",
minHeight: "20em",
minWidth: "20em",
minWidth: "15em",
},
error: {
background: "",
Expand All @@ -85,19 +85,19 @@ export const theme = {
borderBottom: "",
panelBackground: "",
background: "",
color: '',
color: "",
},
tabPanel: {
phoneHeight: "10em",
},
selectedTab: {
background: '',
background: "",
borderBottom: "0.2em solid rgb(0, 0, 0)",
},
},
};

export type ColorMode = "light" | "dark"
export type ColorMode = "light" | "dark";

/**
* Get corresponding theme.
Expand Down

0 comments on commit 514b45e

Please sign in to comment.