Skip to content

Instantly share code, notes, and snippets.

@adi518
Last active May 3, 2018 19:15
Show Gist options
  • Save adi518/691474483e0ab7a424c0cffaf916776d to your computer and use it in GitHub Desktop.
Save adi518/691474483e0ab7a424c0cffaf916776d to your computer and use it in GitHub Desktop.
<template>
<div :class="[namespace.kebab]">
<h2 class="title" v-if="$slots.title">
<slot name="title" />
</h2>
<div class="body">
<slot name="body" />
</div>
<slot name="button">
<w-modal-button @click="$props.close">אישור</w-modal-button>
</slot>
</div>
</template>
<script>
// Abstract
import Component from '@/components/component'
// Implementation
export default {
name: 'WModalContent',
extends: Component,
props: {
close: {
type: Function,
default: () => {}
}
}
}
</script>
<style lang="scss" scoped>
.w-modal-content {
width: 470px;
height: 500px;
display: flex;
flex-direction: column;
@include wobi-small-mobile {
width: auto;
height: 100%;
overflow: hidden;
}
}
.title {
color: $color-bahama-blue;
margin-top: 26px;
margin-bottom: 0;
text-align: center;
padding-bottom: 26px;
border-bottom: 1px solid $color-tree-poppy;
@include wobi-small-mobile {
font-size: to-dpr(38px);
line-height: to-dpr(20.96px);
color: $color-bahama-blue;
border-bottom-color: $color-bahama-blue;
}
}
.body {
flex: 1;
font-size: 18px;
overflow-y: auto;
line-height: 25px;
padding-top: 48px;
padding-left: 31px;
padding-right: 31px;
padding-bottom: 50px;
@include wobi-small-mobile {
padding-top: to-dpr(137px);
padding-left: to-dpr(112px);
padding-right: to-dpr(112px);
padding-bottom: 1em;
}
}
</style>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment