Application Android et IOS pour l'amicale des élèves https://play.google.com/store/apps/details?id=fr.amicaleinsat.application
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.

Input.js 375B

12345678910111213141516171819
  1. // @flow
  2. import variable from './../variables/platform';
  3. export default (variables /*: * */ = variable) => {
  4. const inputTheme = {
  5. '.multiline': {
  6. height: null,
  7. },
  8. height: variables.inputHeightBase,
  9. color: variables.inputColor,
  10. paddingLeft: 5,
  11. paddingRight: 5,
  12. flex: 1,
  13. fontSize: variables.inputFontSize
  14. };
  15. return inputTheme;
  16. };