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.native.js 598B

1234567891011121314151617181920212223242526
  1. import { createStyleSheet } from '../../base/styles';
  2. /**
  3. * The styles of the React {@code Component}s of the feature recent-list i.e.
  4. * {@code CalendarList}.
  5. */
  6. export default createStyleSheet({
  7. /**
  8. * Text style of the empty recent list message.
  9. */
  10. emptyListText: {
  11. backgroundColor: 'transparent',
  12. color: 'rgba(255, 255, 255, 0.6)',
  13. textAlign: 'center'
  14. },
  15. /**
  16. * The style of the empty recent list container.
  17. */
  18. emptyListContainer: {
  19. alignItems: 'center',
  20. justifyContent: 'center',
  21. padding: 20
  22. }
  23. });