_report.scss 516 B

12345678910111213141516171819202122232425262728293031
  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: 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. }