mirror of
https://github.com/unraid/api.git
synced 2026-05-06 23:20:30 -05:00
15 lines
415 B
Vue
15 lines
415 B
Vue
<script setup lang="ts">
|
|
withDefaults(defineProps<{ increasedPadding?: boolean }>(), {
|
|
increasedPadding: false,
|
|
});
|
|
</script>
|
|
|
|
<template>
|
|
<div
|
|
class="group/card p-4 text-left relative flex flex-col flex-1 text-beta bg-alpha border-2 border-solid border-gamma/50 rounded-md shadow-md hover:shadow-orange/50 transition-all"
|
|
:class="increasedPadding && 'md:p-6'"
|
|
>
|
|
<slot></slot>
|
|
</div>
|
|
</template>
|