style.scss
62 lines
| 1 | /* stylelint-disable selector-class-pattern */ |
| 2 | |
| 3 | .give-donor-dashboard-logout-modal { |
| 4 | display: flex; |
| 5 | align-items: center; |
| 6 | justify-content: center; |
| 7 | position: fixed; |
| 8 | width: 100%; |
| 9 | height: 100%; |
| 10 | top: 0; |
| 11 | left: 0; |
| 12 | z-index: 99; |
| 13 | |
| 14 | .give-donor-dashboard-logout-modal__frame { |
| 15 | background: #fff; |
| 16 | z-index: 2; |
| 17 | box-shadow: 0 2px 5px rgb(0 0 0 / 30%); |
| 18 | border-radius: 8px; |
| 19 | overflow: hidden; |
| 20 | width: 90%; |
| 21 | max-width: 480px; |
| 22 | |
| 23 | .give-donor-dashboard-logout-modal__header { |
| 24 | background: var(--give-donor-dashboard-accent-color); |
| 25 | font-size: 21px; |
| 26 | font-weight: 500; |
| 27 | padding: 26px 36px; |
| 28 | line-height: 26px; |
| 29 | color: #fff; |
| 30 | } |
| 31 | |
| 32 | .give-donor-dashboard-logout-modal__body { |
| 33 | padding: 30px 36px 20px 36px; |
| 34 | font-size: 15px; |
| 35 | font-weight: 500; |
| 36 | line-height: 24px; |
| 37 | color: #555; |
| 38 | } |
| 39 | |
| 40 | .give-donor-dashboard-logout-modal__buttons { |
| 41 | display: flex; |
| 42 | align-items: center; |
| 43 | justify-content: space-between; |
| 44 | |
| 45 | a.give-donor-dashboard-logout-modal__cancel { |
| 46 | cursor: pointer; |
| 47 | } |
| 48 | } |
| 49 | } |
| 50 | |
| 51 | .give-donor-dashboard-logout-modal__bg { |
| 52 | position: absolute; |
| 53 | width: 100%; |
| 54 | height: 100%; |
| 55 | top: 0; |
| 56 | left: 0; |
| 57 | z-index: 1; |
| 58 | background: rgba(255, 255, 255, 0.6); |
| 59 | border-radius: 8px; |
| 60 | } |
| 61 | } |
| 62 |