123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120 |
- .fsTable {
- :global {
- .ant-table-tbody > tr > td,
- .ant-table-thead > tr > th {
- height: 50px;
- }
- }
- :global {
- .ant-table-tbody > tr > td,
- .ant-table-thead > tr > th {
- &:nth-child(1) {
- width: 40%;
- }
- &:nth-child(2) {
- width: 40%;
- }
- &:nth-child(3) {
- width: 20%;
- }
- }
- .ant-table-thead {
- & > tr {
- transition: none;
- display: block;
- & > th {
- display: inline-flex;
- align-items: center;
- justify-content: center;
- }
- }
- }
- .ant-table-tbody {
- & > tr {
- transition: none;
- display: block;
- border-bottom: 1px solid #f5f5f5;
- & > td {
- border-bottom: none;
- display: inline-flex;
- align-items: center;
- justify-content: center;
- }
- &.ant-table-expanded-row-level-1 > td {
- height: auto;
- }
- }
- }
- }
- }
- .sTable {
- :global {
- .ant-table-tbody > tr > td,
- .ant-table-thead > tr > th {
- height: 50px;
- }
- }
- :global {
- .ant-table-tbody > tr > td,
- .ant-table-thead > tr > th {
- &:nth-child(1) {
- width: 30%;
- }
- &:nth-child(2) {
- width: 30%;
- }
- &:nth-child(3) {
- width: 20%;
- }
- &:nth-child(4) {
- width: 20%;
- }
- }
- .ant-table-thead {
- & > tr {
- transition: none;
- display: block;
- & > th {
- display: inline-flex;
- align-items: center;
- justify-content: center;
- }
- }
- }
- .ant-table-tbody {
- & > tr {
- transition: none;
- display: block;
- border-bottom: 1px solid #f5f5f5;
- & > td {
- border-bottom: none;
- display: inline-flex;
- align-items: center;
- justify-content: center;
- }
- &.ant-table-expanded-row-level-1 > td {
- height: auto;
- }
- }
- }
- }
- }
|