12 lines
261 B
Vue
12 lines
261 B
Vue
<template>
|
|
<div class="viewer-layout-panel bg-foundation rounded-lg border border-outline-2">
|
|
<slot />
|
|
</div>
|
|
</template>
|
|
|
|
<style scoped>
|
|
.viewer-layout-panel {
|
|
box-shadow: 0 2px 4px -2px rgb(0 0 0 / 2%), 0 4px 6px -1px rgb(16 16 16 / 2%);
|
|
}
|
|
</style>
|