commit
6693c3ab97
|
|
@ -4,7 +4,7 @@
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
<div class="dialog">
|
<div class="dialog">
|
||||||
|
<slot></slot>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
|
@ -22,13 +22,17 @@ export default {
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<style scoped lang="sass">
|
<style scoped lang="sass">
|
||||||
.dialog-wrapper.open
|
.dialog-wrapper
|
||||||
|
z-index: 1400
|
||||||
position: absolute
|
position: absolute
|
||||||
left: 0
|
left: 0
|
||||||
top: 0
|
top: 0
|
||||||
width: 100vw
|
width: 100vw
|
||||||
height: 100vh
|
height: 100vh
|
||||||
display: flex
|
display: flex
|
||||||
|
opacity: 0
|
||||||
|
transition: opacity 150ms
|
||||||
|
pointer-events: none
|
||||||
align-items: center
|
align-items: center
|
||||||
justify-content: center
|
justify-content: center
|
||||||
.overlay
|
.overlay
|
||||||
|
|
@ -48,4 +52,8 @@ export default {
|
||||||
min-width: 250px
|
min-width: 250px
|
||||||
z-index: 1400
|
z-index: 1400
|
||||||
box-shadow: 0px 3px 5px -1px rgba(0,0,0,0.2), 0px 6px 10px 0px rgba(0,0,0,0.14), 0px 1px 18px 0px rgba(0,0,0,0.12)
|
box-shadow: 0px 3px 5px -1px rgba(0,0,0,0.2), 0px 6px 10px 0px rgba(0,0,0,0.14), 0px 1px 18px 0px rgba(0,0,0,0.12)
|
||||||
|
.dialog-wrapper.open
|
||||||
|
pointer-events: all
|
||||||
|
opacity: 1
|
||||||
|
|
||||||
</style>
|
</style>
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,9 @@
|
||||||
<template>
|
<template>
|
||||||
<div>
|
<div>
|
||||||
<Dialog :open="aboutOpen" :onClose="closeAbout" />
|
<Dialog :open="aboutOpen" :onClose="closeAbout">
|
||||||
|
test
|
||||||
|
<Logo :nopadding="true"/>
|
||||||
|
</Dialog>
|
||||||
<section class="handle" :class="{'open': menuStatus}">
|
<section class="handle" :class="{'open': menuStatus}">
|
||||||
<div @click="toggleMenuStatus" class="icon">
|
<div @click="toggleMenuStatus" class="icon">
|
||||||
<svg version="1.1" id="Capa_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 384.97 384.97" style="enable-background:new 0 0 384.97 384.97;" xml:space="preserve">
|
<svg version="1.1" id="Capa_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 384.97 384.97" style="enable-background:new 0 0 384.97 384.97;" xml:space="preserve">
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue