fix: remove all:initial rule from all div based ui compoennts

This commit is contained in:
fragosti
2018-11-08 15:10:32 -08:00
parent 316f3e2e76
commit 27ea271842
3 changed files with 0 additions and 3 deletions

View File

@@ -42,7 +42,6 @@ export const Container =
ContainerProps >
`
&& {
all: initial;
box-sizing: border-box;
${props => cssRuleIfExists(props, 'flex-grow')}
${props => cssRuleIfExists(props, 'position')}

View File

@@ -19,7 +19,6 @@ export const Flex =
FlexProps >
`
&& {
all: initial;
display: ${props => (props.inline ? 'inline-flex' : 'flex')};
flex-direction: ${props => props.direction};
flex-wrap: ${props => props.flexWrap};

View File

@@ -28,7 +28,6 @@ export const Text =
TextProps >
`
&& {
all: initial;
font-family: 'Inter UI', sans-serif;
font-style: ${props => props.fontStyle};
font-weight: ${props => props.fontWeight};