1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
.overlay { background-color: rgba(0, 0, 0, 0.6); } .cnt { background-color: var(--bg-modal); color: var(--color-text); max-width: 300px; line-height: 1.4; transform: scale(1.2); opacity: 0.6; transition: all 0.3s ease; } .afterOpen { opacity: 1; transform: scale(1); } .btngrp { display: flex; align-items: center; justify-content: center; margin-top: 30px; }