File tree Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -14,5 +14,6 @@ export * from './types';
14
14
export * from './components' ;
15
15
export * from './constants' ;
16
16
export * from './utils' ;
17
+ export * from './styles' ;
17
18
18
19
export { themesObject } from './designSystem/themesObject' ;
Original file line number Diff line number Diff line change @@ -250,14 +250,14 @@ export const innerRightContentPosition = (): CSSProp => css`
250
250
251
251
// help message styles when label is not STANDARD and input has inner left content
252
252
export const helpMessageMargin = ( marginLeft : number ) : CSSProp => css `
253
- div : has (> span ) {
253
+ > div : has (> span ) {
254
254
margin-left : ${ pxToRem ( marginLeft ) } rem;
255
255
}
256
256
` ;
257
257
258
258
// label is not STANDARD (absolute position) and input has inner left content
259
259
export const labelInTopStyles = ( marginLeft : number ) : CSSProp => css `
260
- div : has ( > label ) {
260
+ > div {
261
261
margin-left : ${ marginLeft } rem;
262
262
width : calc (100% - ${ marginLeft } rem);
263
263
}
You can’t perform that action at this time.
0 commit comments