styles.module.scss
46 lines
| 1 | .headerRow { |
| 2 | padding-bottom: 20px; |
| 3 | display: flex; |
| 4 | width: 100%; |
| 5 | |
| 6 | .headerItem { |
| 7 | margin-right: 20px !important; |
| 8 | } |
| 9 | } |
| 10 | |
| 11 | .row { |
| 12 | display: flex; |
| 13 | flex-direction: row; |
| 14 | justify-content: space-between; |
| 15 | align-items: center; |
| 16 | gap: 15px; |
| 17 | } |
| 18 | |
| 19 | .input { |
| 20 | padding: 10px; |
| 21 | width: 100%; |
| 22 | } |
| 23 | |
| 24 | .buttons { |
| 25 | padding-top: 20px; |
| 26 | display: flex; |
| 27 | flex-direction: row; |
| 28 | justify-content: space-between; |
| 29 | align-items: center; |
| 30 | gap: 15px; |
| 31 | } |
| 32 | |
| 33 | .pagination { |
| 34 | display: inline-flex; |
| 35 | width: 100%; |
| 36 | height: 32px; |
| 37 | align-items: center; |
| 38 | justify-content: flex-end; |
| 39 | } |
| 40 | |
| 41 | .footerRow { |
| 42 | padding-top: 20px; |
| 43 | display: flex; |
| 44 | width: 100%; |
| 45 | } |
| 46 |