-
Notifications
You must be signed in to change notification settings - Fork 3
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
feat(mobile-data-mode): add mobile compatibility #490
Conversation
@@ -36,3 +36,6 @@ | |||
.hideLabel | |||
span | |||
display: none | |||
|
|||
button.button.hideLabel |
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.
why the button.button.
? Isn't this the same class as the hideLabel above?
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.
It gets overwritten by
.button, &:not(:first-child) padding-left: emCalc(30px)
in navigation.tsx, so i needed to give it a higher specification.
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.
Looks to me like the problem should be solved in the navigation component. Not sure if I understand the problem but the "shared" button component shouldn't have to adjust its code because someone who uses the component overwrites its styles.
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.
Makes sense, thanks! I will change it.
No description provided.