Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

styles.native.ts 1.1KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. import { ColorPalette } from '../../base/styles/components/styles/ColorPalette';
  2. import { createStyleSheet } from '../../base/styles/functions.native';
  3. /**
  4. * The styles of the React {@code Component}s of the feature recent-list i.e.
  5. * {@code CalendarList}.
  6. */
  7. export default createStyleSheet({
  8. /**
  9. * Text style of the empty recent list message.
  10. */
  11. emptyListText: {
  12. backgroundColor: 'transparent',
  13. color: 'rgba(255, 255, 255, 0.6)',
  14. textAlign: 'center'
  15. },
  16. /**
  17. * The style of the empty recent list container.
  18. */
  19. emptyListContainer: {
  20. alignItems: 'center',
  21. justifyContent: 'center',
  22. padding: 20
  23. },
  24. entryNameContainer: {
  25. alignItems: 'center',
  26. borderBottomColor: ColorPalette.lightGrey,
  27. borderBottomWidth: 1,
  28. borderTopLeftRadius: 16,
  29. borderTopRightRadius: 16,
  30. flexDirection: 'row',
  31. justifyContent: 'center',
  32. height: 48
  33. },
  34. entryNameLabel: {
  35. color: ColorPalette.lightGrey,
  36. flexShrink: 1,
  37. fontSize: 16,
  38. opacity: 0.90
  39. }
  40. });