aboutsummaryrefslogtreecommitdiff
path: root/src/components/modal/modal.vue
blob: c0a7ab2164d70a8f99bdecd2fe393525fd4758dd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
<template>
  <div
    v-body-scroll-lock="true"
    @click.self="closeModal"
    class="modal-view"
  >
    <slot />
  </div>
</template>

<script>
export default {
  methods: {
    closeModal () {
      this.$emit('close')
    }
  }
}
</script>

<style lang="scss">

.modal-view {
  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;

  body:not(.scroll-locked) & {
    display: none;
  }
}

</style>