-
-
Notifications
You must be signed in to change notification settings - Fork 1.4k
Issue #702 - added tabButtonTextTransform variable to theme #728
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
Conversation
Codecov Report
|
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.
Cool, thanks! Just a couple of small things.
.prettierrc
Outdated
@@ -3,7 +3,7 @@ | |||
"singleQuote": true, | |||
"trailingComma": "es5", | |||
"useTabs": true, | |||
"proseWrap": "never", | |||
"proseWrap": false, |
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 like you forget to run npm install
after pulling the changes. The right value is never
now.
@@ -3,14 +3,14 @@ import PropTypes from 'prop-types'; | |||
import Styled from 'rsg-components/Styled'; | |||
import cx from 'classnames'; | |||
|
|||
export const styles = ({ space, color, fontFamily, fontSize }) => ({ | |||
export const styles = ({ space, color, fontFamily, fontSize, tabButtonTextTransform }) => ({ |
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 think buttonTextTransform
would be enough.
No description provided.