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.

BoxModel.js 361B

123456789101112131415
  1. /**
  2. * The application's default properties related to the CSS box model such as
  3. * margins, borders, padding.
  4. */
  5. export const BoxModel = {
  6. /**
  7. * The application's default margin when non-zero margin is necessary.
  8. */
  9. margin: 10,
  10. /**
  11. * The application's default padding when non-zero padding is necessary.
  12. */
  13. padding: 10
  14. };