| 1234567891011121314151617181920212223242526272829303132333435363738394041 |
- .header {
- display: flex;
- padding: 16px 16px 0px 16px;
- margin-bottom: 16px;
- border-radius: 4px;
- background: white;
- box-shadow: 0 0 12px rgb(0 0 0 / 5%);
- }
- .footer {
- flex: 1;
- display: flex;
- padding: 16px;
- flex-direction: column;
- border-radius: 4px;
- overflow: hidden;
- background: white;
- box-shadow: 0 0 12px rgb(0 0 0 / 5%);
- position: relative;
- box-sizing: border-box;
- .util {
- margin-bottom: 15px;
- display: flex;
- justify-content: flex-end;
- flex-shrink: 0;
- }
- .table-inner {
- flex: 1;
- position: relative;
- }
- .table {
- position: absolute;
- left: 0;
- top: 0;
- width: 100%;
- height: 100%;
- }
- }
|