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

1234567891011121314
  1. import { BoxModel, createStyleSheet } from '../../styles';
  2. /**
  3. * The React {@code Component} styles of {@code Dialog}.
  4. */
  5. export default createStyleSheet({
  6. /**
  7. * Unified container for a consistent Dialog style.
  8. */
  9. dialogContainer: {
  10. paddingHorizontal: BoxModel.padding,
  11. paddingVertical: 1.5 * BoxModel.padding
  12. }
  13. });