_report.scss 517 B

1234567891011121314151617181920212223242526272829303132
  1. .report {
  2. display: grid;
  3. grid-column-gap: theme('spacing.12');
  4. @include nice-margin();
  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: right;
  18. display: block;
  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. }