123456789101112131415161718192021222324252627282930 |
- .A5story {
- position: relative;
- :global {
- .A5top {
- border-radius: 10px;
- background-color: #fff;
- padding: 15px 24px;
- display: flex;
- justify-content: space-between;
- & > div {
- display: flex;
- .A5TopRow {
- display: flex;
- align-items: center;
- margin-right: 20px;
- .ant-select-selection-placeholder {
- color: black;
- }
- }
- }
- }
- .A5tableBox {
- border-radius: 10px;
- overflow: hidden;
- margin-top: 15px;
- height: calc(100% - 77px);
- background-color: #fff;
- }
- }
- }
|