pleroma-fe/src/components/modal/modal.vue

37 lines
641 B
Vue
Raw Normal View History

2019-10-18 13:04:24 +02:00
<template>
<portal to="modal">
<div
v-show="isOpen"
2019-10-18 17:57:54 +02:00
v-body-scroll-lock="isOpen"
:class="['modal-view', viewClass]"
@click.self="closeModal"
>
<slot />
</div>
</portal>
2019-10-18 13:04:24 +02:00
</template>
<script src="./modal.js"></script>
2019-10-18 13:04:24 +02:00
<style lang="scss">
.modal-view {
2019-10-18 13:07:16 +02:00
z-index: 1000;
position: fixed;
top: 0;
left: 0;
right: 0;
bottom: 0;
display: flex;
justify-content: center;
align-items: center;
overflow: auto;
animation-duration: 0.2s;
background-color: rgba(0, 0, 0, 0.5);
animation-name: modal-background-fadein;
2019-10-18 13:04:24 +02:00
body:not(.scroll-locked) & {
display: none;
}
}
</style>