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 727B

12345678910111213141516171819202122232425262728293031
  1. // @flow
  2. import { BoxModel, ColorPalette, createStyleSheet } from '../../base/styles';
  3. /**
  4. * The styles of the React {@code Component}s of the feature subtitles.
  5. */
  6. export default createStyleSheet({
  7. /**
  8. * Style for subtitle paragraph.
  9. */
  10. subtitle: {
  11. backgroundColor: ColorPalette.black,
  12. borderRadius: BoxModel.margin / 4,
  13. color: ColorPalette.white,
  14. marginBottom: BoxModel.margin,
  15. padding: BoxModel.padding / 2
  16. },
  17. /**
  18. * Style for the subtitles container.
  19. */
  20. subtitlesContainer: {
  21. alignItems: 'center',
  22. flexDirection: 'column',
  23. flexGrow: 0,
  24. justifyContent: 'flex-end',
  25. margin: BoxModel.margin
  26. }
  27. });