1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- .cardContainer {
- width: 100%;
- padding: 20px 20px;
- background-color: white;
- .collapseLabel {
- width: 100%;
- :global {
- .ant-collapse-header {
- justify-content: center;
- flex-direction: row-reverse;
- .ant-collapse-header-text {
- flex: unset;
- margin-inline-end: unset;
- }
- }
- }
- .workOrderCard {
- margin-bottom: 20px;
- padding: 20px 10px;
- border-radius: 8px;
- background-color: #e5effa;
- display: flex;
- align-items: center;
- .leftInfo {
- width: 80%;
- }
- .rightButton {
- flex: auto;
- color: #5697e4;
- text-align: center;
- display: flex;
- justify-content: center;
- align-items: center;
- }
- }
- }
- }
|