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

123456789101112131415161718192021222324252627282930
  1. // @flow
  2. import { ColorPalette, createStyleSheet } from '../../styles';
  3. /**
  4. * The styles of the native base/label feature.
  5. */
  6. export default createStyleSheet({
  7. /**
  8. * The outermost view.
  9. */
  10. indicatorContainer: {
  11. alignItems: 'center',
  12. backgroundColor: '#808080',
  13. borderRadius: 18,
  14. borderWidth: 0,
  15. flex: 0,
  16. height: 36,
  17. justifyContent: 'center',
  18. margin: 5,
  19. opacity: 0.6,
  20. width: 36
  21. },
  22. indicatorText: {
  23. color: ColorPalette.white,
  24. fontSize: 12
  25. }
  26. });