SearchForm.module.scss 546 B

123456789101112131415161718192021222324252627282930313233343536
  1. @use '~/styles/bootstrap/init' as bs;
  2. .grw-search-table {
  3. caption {
  4. display: table-header-group;
  5. }
  6. }
  7. @include bs.media-breakpoint-down(sm) {
  8. .grw-search-table {
  9. th {
  10. text-align: right;
  11. }
  12. td {
  13. overflow-wrap: anywhere;
  14. white-space: normal !important;
  15. }
  16. @include bs.media-breakpoint-down(xs) {
  17. th,
  18. td {
  19. display: block;
  20. }
  21. th {
  22. text-align: left;
  23. }
  24. td {
  25. padding-top: 0 !important;
  26. border-top: none !important;
  27. }
  28. }
  29. }
  30. }