_report.scss 525 B

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