style.module.scss
87 lines
| 1 | .title { |
| 2 | display: flex; |
| 3 | align-items: center; |
| 4 | justify-content: space-between; |
| 5 | font-weight: 600; |
| 6 | padding: 16px; |
| 7 | font-size: 15px; |
| 8 | } |
| 9 | |
| 10 | .table { |
| 11 | display: flex; |
| 12 | flex-direction: column; |
| 13 | |
| 14 | overflow-y: auto; |
| 15 | overflow-x: hidden; |
| 16 | |
| 17 | > * { |
| 18 | display: flex; |
| 19 | height: auto; |
| 20 | font-size: 14px; |
| 21 | padding: 10px 16px; |
| 22 | |
| 23 | > * { |
| 24 | flex: 1; |
| 25 | } |
| 26 | } |
| 27 | } |
| 28 | |
| 29 | .header { |
| 30 | font-weight: 500; |
| 31 | position: sticky; |
| 32 | top: 0; |
| 33 | display: flex; |
| 34 | align-items: center; |
| 35 | border-bottom: 2px solid #eee; |
| 36 | padding: 20px; |
| 37 | } |
| 38 | |
| 39 | .headerStripped { |
| 40 | background: #f4f4f4; |
| 41 | box-shadow: 0 0 8px #b8b8b8; |
| 42 | } |
| 43 | |
| 44 | .row { |
| 45 | background: #fff; |
| 46 | padding: 20px; |
| 47 | border-bottom: 2px solid #eee; |
| 48 | } |
| 49 | |
| 50 | .row:last-child { |
| 51 | border-bottom: 0; |
| 52 | border-bottom-left-radius: 5px; |
| 53 | border-bottom-right-radius: 5px; |
| 54 | } |
| 55 | |
| 56 | .rowStripped { |
| 57 | &:nth-of-type(odd) { |
| 58 | background: #f4f4f4; |
| 59 | } |
| 60 | } |
| 61 | |
| 62 | .label { |
| 63 | font-weight: 600; |
| 64 | } |
| 65 | |
| 66 | .item { |
| 67 | display: flex; |
| 68 | color: #555; |
| 69 | |
| 70 | a { |
| 71 | text-decoration: none; |
| 72 | } |
| 73 | } |
| 74 | |
| 75 | .sortIconUndefined { |
| 76 | color: #b8b8b8; |
| 77 | } |
| 78 | |
| 79 | .sortIcons { |
| 80 | cursor: pointer; |
| 81 | padding-left: 6px; |
| 82 | } |
| 83 | |
| 84 | .noData { |
| 85 | padding: 20px; |
| 86 | } |
| 87 |