| 123456789101112131415161718192021222324252627282930313233343536 |
- @use '@growi/core-styles/scss/bootstrap/init' as bs;
- .grw-search-table {
- caption {
- display: table-header-group;
- }
- }
- @include bs.media-breakpoint-down(sm) {
- .grw-search-table {
- th {
- text-align: right;
- }
- td {
- overflow-wrap: anywhere;
- white-space: normal !important;
- }
- @include bs.media-breakpoint-down(xs) {
- th,
- td {
- display: block;
- }
- th {
- text-align: left;
- }
- td {
- padding-top: 0 !important;
- border-top: none !important;
- }
- }
- }
- }
|