| 123456789101112131415161718192021222324252627282930313233343536373839404142 |
- .modalContainer {
- width: 60vw;
- .modalHeader {
- position: relative;
- padding: 1.5rem;
- .inputSearch {
- width: 99%;
- }
- .closeIcon {
- position: absolute;
- top: 5px;
- right: 7px;
- }
- }
- .modalContent {
- height: 63vh;
- max-height: 63vh;
- padding: 1.5rem;
- overflow-y: auto;
- border-top: 1px solid #dee2e6;
- border-bottom: 1px solid #dee2e6;
- .card {
- display: flex;
- align-items: center;
- justify-content: space-between;
- padding: 1rem;
- word-wrap: break-word;
- background-color: #ffffff;
- background-clip: border-box;
- border: 1px solid rgba(0, 0, 0, 0.08);
- border-radius: 4px;
- box-shadow: 0 0 13px 0 rgba(74, 53, 107, 0.08);
- &:not(:last-of-type) {
- margin-bottom: 1rem;
- }
- }
- }
- .modalFooter {
- padding: 1.5rem;
- }
- }
|