mirror of
https://github.com/yldio/copilot.git
synced 2024-11-10 21:30:06 +02:00
remove redundant !important's
This commit is contained in:
parent
31e004781f
commit
cf70ba3101
@ -49,11 +49,11 @@ const Text = styled.p`
|
||||
`;
|
||||
|
||||
const RightText = styled(Text)`
|
||||
margin: 0 0 0 auto !important;
|
||||
margin: 0 0 0 auto;
|
||||
`;
|
||||
|
||||
const PeopleInput = styled(Input)`
|
||||
margin-bottom: ${remcalc(24)} !important;
|
||||
margin-bottom: ${remcalc(24)};
|
||||
`;
|
||||
|
||||
const CreateMonitor = ({
|
||||
|
@ -59,8 +59,8 @@ const Buttons = styled.div`
|
||||
`;
|
||||
|
||||
const LeftButton = styled(Button)`
|
||||
margin-right: ${remcalc(6)} !important;
|
||||
`; // But why oh why do I need to use !important :'(
|
||||
margin-right: ${remcalc(6)};
|
||||
`;
|
||||
|
||||
const NewProjectBilling = (props) => {
|
||||
const {
|
||||
|
@ -58,8 +58,8 @@ const Buttons = styled.div`
|
||||
`;
|
||||
|
||||
const LeftButton = styled(Button)`
|
||||
margin-right: ${remcalc(6)} !important;
|
||||
`; // But why oh why do I need to use !important :'(
|
||||
margin-right: ${remcalc(6)};
|
||||
`;
|
||||
|
||||
const CreateProject = (props) => {
|
||||
const {
|
||||
|
@ -69,8 +69,8 @@ const Buttons = styled.div`
|
||||
`;
|
||||
|
||||
const ProjectNameButtons = styled(Button)`
|
||||
margin-right: ${remcalc(6)} !important;
|
||||
`; // But why oh why do I need to use !important :'(
|
||||
margin-right: ${remcalc(6)};
|
||||
`;
|
||||
|
||||
const CreateBilling = (props) => {
|
||||
const {
|
||||
|
Loading…
Reference in New Issue
Block a user