Skip to content

Commit

Permalink
Merge pull request #87 from metrico/alexey-feature-light-theme
Browse files Browse the repository at this point in the history
logs light bg fix
  • Loading branch information
jacovinus authored Apr 28, 2022
2 parents f576b4e + 36930e9 commit 07e2745
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/components/DataView/styled/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import styled from "@emotion/styled";
import { CircularProgress } from "@mui/material";

export const DataViewStyled = styled.div`
background: ${(props) => props.theme.viewBg};
background: ${(props) => props.theme.mainBgColor};
margin: 6px 8px;
overflow-y: scroll;
overflow-x: hidden;
Expand Down
4 changes: 2 additions & 2 deletions src/plugins/queryhistory/styled/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,13 +13,13 @@ import { TabsUnstyled } from "@mui/base";
export const StyledDrawer = styled((props) => (
<Drawer
anchor={"bottom"}
style={{ maxHeight: "250px" }}
style={{ maxHeight: "250px", }}
variant={"persistent"}
{...props}
/>
))(({ theme }) => ({
"& .MuiPaper-root": {
borderTop: "none",
borderTop:`1px solid ${theme.buttonBorder}`,
},
}));

Expand Down
1 change: 1 addition & 0 deletions src/plugins/settingsmenu/Menu.js
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@ const StyledMenu = styled((props) => (
marginTop: theme.spacing(1),
minWidth: 180,
color:clokitheme.textColor,
border: `1px solid ${clokitheme.buttonBorder}`,
backgroundColor: clokitheme.buttonDefault,
"& .MuiMenu-list": {
padding: "4px 0",
Expand Down
2 changes: 1 addition & 1 deletion src/theme/light.js
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ const typography = {
const orange = {
or100: "hsl(39, 100%, 50%)",
};
const mainBgColor = white.w500;
const mainBgColor = white.w100;
const logBgColor = white.w100;
const tabActive = white.w100;
const tabHeader = white.b400;
Expand Down

0 comments on commit 07e2745

Please sign in to comment.