Существует код компонента (причина я использую React): < /p>
Код: Выделить всё
const ModalPhone = () => {
const [isOpen, setIsOpen] = useState(false);
return (
setIsOpen(true)}>✅
{isOpen && (
setIsOpen(false)}>❌
)}
)}
< /code>
А вот стиль: < /p>
.modalOverlay {
background-color: rgba(0, 0, 0, 0.25);
position: fixed;
inset: 0;
z-index: 999;
}
.modal {
background-color: #fff;
padding: 16px;
position: absolute;
right: 0;
top: 0;
width: 264px;
height: 100vh;
}
Подробнее здесь: https://stackoverflow.com/questions/796 ... ge-content
Мобильная версия