Web:Common:PageLayout: change background-color and fill for section toggler button in dark-theme

This commit is contained in:
Timofey Boyko 2021-12-28 16:47:44 +08:00
parent 190e3eed1e
commit ee839e8169
3 changed files with 8 additions and 1 deletions

View File

@ -27,6 +27,11 @@ const StyledSectionToggler = styled.div`
background: ${(props) => props.theme.section.toggler.background};
box-sizing: border-box;
line-height: 14px;
svg {
path {
fill: ${(props) => props.theme.section.toggler.background};
}
}
}
`;

View File

@ -1745,6 +1745,7 @@ const Base = {
section: {
toggler: {
background: "#fff",
fill: "#A3A9AE",
boxShadow: "0px 5px 20px rgba(0, 0, 0, 0.13)",
},

View File

@ -1744,7 +1744,8 @@ const Dark = {
section: {
toggler: {
background: "#fff",
background: "#F58D31",
fill: "#333333",
boxShadow: "0px 5px 20px rgba(0, 0, 0, 0.13)",
},