-
Notifications
You must be signed in to change notification settings - Fork 16
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Styled components upgrade #2397
base: main
Are you sure you want to change the base?
Conversation
New and removed dependencies detected. Learn more about Socket for GitHub ↗︎
|
b942069
to
fe4d546
Compare
PR deployed in Google Cloud |
PR deployed in Google Cloud |
fe4d546
to
c0a7232
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
💅
` | ||
|
||
const StyledText = styled(Text)` | ||
marginleft: auto; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
marginleft: auto; | |
margin-left: auto; |
@@ -27,10 +27,10 @@ const Chip = styled(Text)((props) => | |||
css({ | |||
display: 'inline-block', | |||
px: 1, | |||
bg: `${props.backgroundColor}Bg`, | |||
bg: `${String(props.backgroundColor)}Bg`, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
bg: `${String(props.backgroundColor)}Bg`, | |
bg: `${props.backgroundColor}Bg`, |
borderRadius: 'chip', | ||
whiteSpace: 'nowrap', | ||
color: `${props.color}`, | ||
color: `${String(props.color)}`, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
color: `${String(props.color)}`, | |
color: `${props.color}`, |
Upgrade styled components and fix the breaking changes
#2270
Approvals