| 1 |
.ka-woo-account-logout { |
| 2 |
display: inline-flex; |
| 3 |
align-items: center; |
| 4 |
justify-content: center; |
| 5 |
gap: 6px; |
| 6 |
} |
| 7 |
|
| 8 |
.ka-logout-modal { |
| 9 |
position: fixed; |
| 10 |
inset: 0; |
| 11 |
background: rgba(15, 23, 42, 0.35); |
| 12 |
display: none; |
| 13 |
align-items: center; |
| 14 |
justify-content: center; |
| 15 |
padding: 16px; |
| 16 |
z-index: 9999; |
| 17 |
} |
| 18 |
|
| 19 |
.ka-logout-modal.is-visible { |
| 20 |
display: flex; |
| 21 |
} |
| 22 |
|
| 23 |
.ka-logout-modal__dialog { |
| 24 |
width: 100%; |
| 25 |
max-width: 420px; |
| 26 |
background: #fff; |
| 27 |
border-radius: 12px; |
| 28 |
box-shadow: 0 20px 45px rgba(15, 23, 42, 0.15); |
| 29 |
border: 1px solid #e2e8f0; |
| 30 |
padding: 24px; |
| 31 |
text-align: center; |
| 32 |
} |
| 33 |
|
| 34 |
.ka-logout-modal__title { |
| 35 |
margin: 0 0 10px; |
| 36 |
font-size: 20px; |
| 37 |
font-weight: 700; |
| 38 |
color: #0f172a; |
| 39 |
} |
| 40 |
|
| 41 |
.ka-logout-modal__desc { |
| 42 |
margin: 0 0 20px; |
| 43 |
font-size: 15px; |
| 44 |
color: #334155; |
| 45 |
} |
| 46 |
|
| 47 |
.ka-logout-modal__actions { |
| 48 |
display: flex; |
| 49 |
gap: 12px; |
| 50 |
justify-content: center; |
| 51 |
flex-wrap: wrap; |
| 52 |
} |
| 53 |
|
| 54 |
.ka-logout-modal__btn { |
| 55 |
display: inline-flex; |
| 56 |
align-items: center; |
| 57 |
justify-content: center; |
| 58 |
min-width: 120px; |
| 59 |
padding: 10px 16px; |
| 60 |
border-radius: 8px; |
| 61 |
border: 1px solid transparent; |
| 62 |
font-weight: 600; |
| 63 |
text-decoration: none; |
| 64 |
transition: all 0.15s ease; |
| 65 |
} |
| 66 |
|
| 67 |
.ka-logout-modal__btn--primary { |
| 68 |
background: #2563eb; |
| 69 |
border-color: #2563eb; |
| 70 |
color: #fff; |
| 71 |
} |
| 72 |
|
| 73 |
.ka-logout-modal__btn--primary:hover { |
| 74 |
background: #1d4ed8; |
| 75 |
border-color: #1d4ed8; |
| 76 |
} |
| 77 |
|
| 78 |
.ka-logout-modal__btn--ghost { |
| 79 |
background: #fff; |
| 80 |
border-color: #cbd5e1; |
| 81 |
color: #0f172a; |
| 82 |
} |
| 83 |
|
| 84 |
.ka-logout-modal__btn--ghost:hover { |
| 85 |
border-color: #94a3b8; |
| 86 |
} |
| 87 |
|
| 88 |
|
| 89 |
|
| 90 |
|
| 91 |
|
| 92 |
|