22 lines
426 B
Vue
22 lines
426 B
Vue
<script setup>
|
|
const props = defineProps({
|
|
style: { type: String},
|
|
class: { type: String},
|
|
})
|
|
</script>
|
|
|
|
<template>
|
|
<div class="shadowed-box" :style=props.style :class=props.class>
|
|
<slot></slot>
|
|
</div>
|
|
</template>
|
|
|
|
<style>
|
|
.shadowed-box {
|
|
box-shadow: 2px 2px 5px #c0c0c0;
|
|
border-radius: 10px;
|
|
padding: 10px;
|
|
background-color: #ffffff;
|
|
}
|
|
</style>
|