_report.scss 501 B

123456789101112131415161718192021222324252627282930
  1. .report {
  2. @include nice-margin();
  3. display: grid;
  4. grid-column-gap: theme('spacing.12');
  5. &__results {
  6. &--text {
  7. margin: 0 theme('spacing.[1.5]') theme('spacing.[1.5]') 0;
  8. + .w-status {
  9. margin-inline-start: 0;
  10. }
  11. }
  12. &--comment {
  13. display: block;
  14. }
  15. }
  16. &__actions > div {
  17. float: inline-end;
  18. margin-inline-end: theme('spacing.3');
  19. }
  20. @include media-breakpoint-down(md) {
  21. form {
  22. margin-bottom: theme('spacing.3');
  23. }
  24. }
  25. }