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.

styles.js 606B

123456789101112131415161718192021222324252627282930313233
  1. import {
  2. BoxModel,
  3. ColorPalette,
  4. createStyleSheet
  5. } from '../../base/styles';
  6. /**
  7. * The styles of the React {@code Components} of the feature
  8. * {@code app-settings}.
  9. */
  10. export default createStyleSheet({
  11. /**
  12. * Style of the ScrollView to be able to scroll the content.
  13. */
  14. scrollView: {
  15. flex: 1
  16. },
  17. /**
  18. * Style of the settings screen content (form).
  19. */
  20. settingsForm: {
  21. flex: 1,
  22. margin: BoxModel.margin
  23. },
  24. /**
  25. * Global {@code Text} color for the page.
  26. */
  27. text: {
  28. color: ColorPalette.black
  29. }
  30. });