mirror of https://github.com/abpframework/abp.git
csharpabpc-sharpframeworkblazoraspnet-coredotnet-coreaspnetcorearchitecturesaasdomain-driven-designangularmulti-tenancy
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
38 lines
1.0 KiB
38 lines
1.0 KiB
// @flow
|
|
|
|
import variable from '../variables/Platform';
|
|
|
|
export default (variables /* : * */ = variable) => {
|
|
const checkBoxTheme = {
|
|
'.checked': {
|
|
'NativeBase.Icon': {
|
|
color: variables.checkboxTickColor,
|
|
},
|
|
'NativeBase.IconNB': {
|
|
color: variables.checkboxTickColor,
|
|
},
|
|
},
|
|
'NativeBase.Icon': {
|
|
color: 'transparent',
|
|
lineHeight: variables.CheckboxIconSize,
|
|
marginTop: variables.CheckboxIconMarginTop,
|
|
fontSize: variables.CheckboxFontSize,
|
|
},
|
|
'NativeBase.IconNB': {
|
|
color: 'transparent',
|
|
lineHeight: variables.CheckboxIconSize,
|
|
marginTop: variables.CheckboxIconMarginTop,
|
|
fontSize: variables.CheckboxFontSize,
|
|
},
|
|
borderRadius: variables.CheckboxRadius,
|
|
overflow: 'hidden',
|
|
width: variables.checkboxSize,
|
|
height: variables.checkboxSize,
|
|
borderWidth: variables.CheckboxBorderWidth,
|
|
paddingLeft: variables.CheckboxPaddingLeft - 1,
|
|
paddingBottom: variables.CheckboxPaddingBottom,
|
|
left: 10,
|
|
};
|
|
|
|
return checkBoxTheme;
|
|
};
|
|
|