system-status-report-counters.css 657 B

123456789101112131415161718192021222324252627282930313233
  1. /*
  2. * DO NOT EDIT THIS FILE.
  3. * See the following change record for more information,
  4. * https://www.drupal.org/node/2815083
  5. * @preserve
  6. */
  7. /**
  8. * @file
  9. * Styles for the system status report counters.
  10. */
  11. .system-status-report-counters__item {
  12. width: 100%;
  13. margin: 10px 0;
  14. }
  15. @media screen and (min-width: 60em) {
  16. .system-status-report-counters__item {
  17. margin-bottom: 20px;
  18. }
  19. .system-status-report-counters {
  20. display: flex;
  21. flex-wrap: wrap;
  22. justify-content: space-between;
  23. }
  24. .system-status-report-counters__item--half-width {
  25. width: 49%;
  26. }
  27. .system-status-report-counters__item--third-width {
  28. width: 32%;
  29. }
  30. }