-
Notifications
You must be signed in to change notification settings - Fork 41
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
2058 status page redesign #2096
base: main
Are you sure you want to change the base?
Conversation
Generated by E2E-Test |
<Chip | ||
label="N/A" | ||
sx={{ | ||
backgroundColor: "rgba(23, 68, 229, 0.1)", |
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.
here I would suggest to insert both colors in the theme.js I already did that for my task and I named them like this: primaryBlue: alpha("#1744e51a", 0.1), darkGrey: "#3f434d". Then you can use sx={(theme) => ({ backgroundColor: theme.palette.primaryBlue, color: theme.palette.darkGrey })}
<Chip | ||
label={strings.status.connected} | ||
sx={{ | ||
backgroundColor: "rgba(23, 68, 229, 0.1)", |
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.
same as comment before
font-size: 0.75rem; | ||
line-height: 1.05rem; | ||
vertical-align: top; | ||
border-bottom: 1px solid rgba(63, 67, 77, 0.1); |
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.
I would use separate border-color and add it like this: border-color: var(--mui-palette-menuBorder) and in theme it is menuBorder: alpha("#3f434d1a", 0.1),
font-weight: 400; | ||
font-size: 0.875rem; | ||
line-height: 1.269rem; | ||
border-bottom: 1px solid rgba(63, 67, 77, 0.1); |
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.
same as previous comment
Checklist
Description
How to test
Closes #2058