app/src/ui/components/Panel.vue

25 lines
347 B
Vue

<template>
<div class="panel">
<slot></slot>
</div>
</template>
<style>
.panel {
border-radius: 5px;
background: #333;
padding: 25px;
box-shadow: rgb(0, 0, 0) 0px 20px 30px -10px;
display: flex;
flex-direction: column;
align-items: stretch;
}
</style>
<script>
export default {
name: "Panel",
setup() {},
};
</script>>