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.
25 lines
548 B
25 lines
548 B
// @flow
|
|
|
|
import variable from '../variables/Platform';
|
|
|
|
export default (variables /* : * */ = variable) => {
|
|
const textAreaTheme = {
|
|
'.underline': {
|
|
borderBottomWidth: variables.borderWidth,
|
|
marginTop: 5,
|
|
borderColor: variables.inputBorderColor,
|
|
},
|
|
'.bordered': {
|
|
borderWidth: 1,
|
|
marginTop: 5,
|
|
borderColor: variables.inputBorderColor,
|
|
},
|
|
color: variables.textColor,
|
|
paddingLeft: 10,
|
|
paddingRight: 5,
|
|
fontSize: 15,
|
|
textAlignVertical: 'top',
|
|
};
|
|
|
|
return textAreaTheme;
|
|
};
|
|
|