mirror of
https://github.com/yldio/copilot.git
synced 2024-11-11 05:40:11 +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)`
|
const RightText = styled(Text)`
|
||||||
margin: 0 0 0 auto !important;
|
margin: 0 0 0 auto;
|
||||||
`;
|
`;
|
||||||
|
|
||||||
const PeopleInput = styled(Input)`
|
const PeopleInput = styled(Input)`
|
||||||
margin-bottom: ${remcalc(24)} !important;
|
margin-bottom: ${remcalc(24)};
|
||||||
`;
|
`;
|
||||||
|
|
||||||
const CreateMonitor = ({
|
const CreateMonitor = ({
|
||||||
|
@ -59,8 +59,8 @@ const Buttons = styled.div`
|
|||||||
`;
|
`;
|
||||||
|
|
||||||
const LeftButton = styled(Button)`
|
const LeftButton = styled(Button)`
|
||||||
margin-right: ${remcalc(6)} !important;
|
margin-right: ${remcalc(6)};
|
||||||
`; // But why oh why do I need to use !important :'(
|
`;
|
||||||
|
|
||||||
const NewProjectBilling = (props) => {
|
const NewProjectBilling = (props) => {
|
||||||
const {
|
const {
|
||||||
|
@ -58,8 +58,8 @@ const Buttons = styled.div`
|
|||||||
`;
|
`;
|
||||||
|
|
||||||
const LeftButton = styled(Button)`
|
const LeftButton = styled(Button)`
|
||||||
margin-right: ${remcalc(6)} !important;
|
margin-right: ${remcalc(6)};
|
||||||
`; // But why oh why do I need to use !important :'(
|
`;
|
||||||
|
|
||||||
const CreateProject = (props) => {
|
const CreateProject = (props) => {
|
||||||
const {
|
const {
|
||||||
|
@ -69,8 +69,8 @@ const Buttons = styled.div`
|
|||||||
`;
|
`;
|
||||||
|
|
||||||
const ProjectNameButtons = styled(Button)`
|
const ProjectNameButtons = styled(Button)`
|
||||||
margin-right: ${remcalc(6)} !important;
|
margin-right: ${remcalc(6)};
|
||||||
`; // But why oh why do I need to use !important :'(
|
`;
|
||||||
|
|
||||||
const CreateBilling = (props) => {
|
const CreateBilling = (props) => {
|
||||||
const {
|
const {
|
||||||
|
Loading…
Reference in New Issue
Block a user