mirror of
https://github.com/yldio/copilot.git
synced 2024-12-01 07:30:07 +02:00
correcting metric colors
This commit is contained in:
parent
6f5af0b949
commit
bb6a7aff23
@ -24,9 +24,8 @@ const StyledButton = styled.button`
|
||||
display: flex;
|
||||
margin: 0;
|
||||
padding: ${remcalc(18)} ${remcalc(24)};
|
||||
color: ${colors.base.primary};
|
||||
float: right;
|
||||
background-color: ${colors.base.primaryLight};
|
||||
background-color: ${colors.base.primaryDark};
|
||||
line-height: 1.5;
|
||||
border: none;
|
||||
border-left: solid ${remcalc(1)} ${colors.base.primaryDark};
|
||||
@ -34,7 +33,7 @@ const StyledButton = styled.button`
|
||||
`;
|
||||
|
||||
const StyledIcon = styled(CloseIcon)`
|
||||
fill: ${colors.base.primary};
|
||||
fill: ${colors.base.white};
|
||||
`;
|
||||
|
||||
const AddMetricButton = ({
|
||||
|
@ -19,7 +19,7 @@ const Container = styled.div`
|
||||
position: relative;
|
||||
height: 100%;
|
||||
width: 100%;
|
||||
background-color: ${colors.base.primary};
|
||||
background-color: ${colors.base.white};
|
||||
`;
|
||||
|
||||
const Canvas = styled.canvas`
|
||||
|
@ -29,7 +29,7 @@ const SelectWrapper = styled.div`
|
||||
&:after {
|
||||
border-left: 5px solid transparent;
|
||||
border-right: 5px solid transparent;
|
||||
border-top: 5px solid ${colors.base.primary};
|
||||
border-top: 5px solid ${colors.base.white};
|
||||
|
||||
${pseudoEl({
|
||||
top: '28px',
|
||||
@ -44,8 +44,8 @@ const StyledSelect = styled.select`
|
||||
font-size:16px;
|
||||
text-align: right !important;
|
||||
border-radius: 0;
|
||||
color: ${colors.base.primary};
|
||||
background-color: ${colors.base.primaryLight};
|
||||
color: ${colors.base.white};
|
||||
background-color: ${colors.base.primaryDark};
|
||||
border: none;
|
||||
border-left: solid ${remcalc(1)} ${colors.base.primaryDark};
|
||||
-webkit-appearance: none;
|
||||
|
@ -25,9 +25,9 @@ const StyledButton = styled(Button)`
|
||||
display: flex;
|
||||
margin: 0;
|
||||
padding: ${remcalc(18)} ${remcalc(24)};
|
||||
color: ${colors.base.primary};
|
||||
color: ${colors.base.white};
|
||||
float: right;
|
||||
background-color: ${colors.base.primaryLight};
|
||||
background-color: ${colors.base.primaryDark};
|
||||
line-height: 1.5;
|
||||
border: none;
|
||||
border-left: solid ${remcalc(1)} ${colors.base.primaryDark};
|
||||
|
@ -23,5 +23,5 @@ module.exports = styled.h3`
|
||||
font-weight: normal;
|
||||
font-style: normal;
|
||||
line-height: 1.5;
|
||||
color: ${colors.base.primary};
|
||||
color: ${colors.base.white};
|
||||
`;
|
||||
|
Loading…
Reference in New Issue
Block a user