mirror of
https://github.com/VueTubeApp/VueTube
synced 2024-11-09 13:05:07 +00:00
25 lines
465 B
Vue
25 lines
465 B
Vue
|
<template>
|
||
|
<v-card class="dialog-base">
|
||
|
<div class="toolbar-container">
|
||
|
<v-toolbar color="background" flat>
|
||
|
<slot name="header"></slot>
|
||
|
</v-toolbar>
|
||
|
<v-divider></v-divider>
|
||
|
</div>
|
||
|
<div class="dialog-body background">
|
||
|
<slot></slot>
|
||
|
</div>
|
||
|
</v-card>
|
||
|
</template>
|
||
|
|
||
|
<style lang="sass">
|
||
|
.dialog-base
|
||
|
display: flex
|
||
|
flex-direction: column
|
||
|
height: 100%
|
||
|
|
||
|
.dialog-body
|
||
|
overflow-y: auto
|
||
|
height: 100%
|
||
|
</style>
|