meriadec
7 years ago
No known key found for this signature in database
GPG Key ID: 1D2FC2305E2CB399
1 changed files with
2 additions and
0 deletions
-
src/components/base/Box/Box.js
|
|
@ -17,6 +17,7 @@ import { |
|
|
|
import fontFamily from 'styles/styled/fontFamily' |
|
|
|
|
|
|
|
export const styledTextAlign = style({ prop: 'textAlign', cssProperty: 'textAlign' }) |
|
|
|
export const styledOverflow = style({ prop: 'overflow', cssProperty: 'overflow' }) |
|
|
|
export const styledCursor = style({ prop: 'cursor', cssProperty: 'cursor' }) |
|
|
|
export const styledTextTransform = style({ prop: 'textTransform', cssProperty: 'textTransform' }) |
|
|
|
|
|
|
@ -34,6 +35,7 @@ export default styled.div` |
|
|
|
${styledTextAlign}; |
|
|
|
${styledCursor}; |
|
|
|
${styledTextTransform}; |
|
|
|
${styledOverflow}; |
|
|
|
|
|
|
|
display: flex; |
|
|
|
flex-shrink: ${p => (p.noShrink === true ? '0' : p.shrink === true ? '1' : '')}; |
|
|
|