mirror of
https://activitypub.software/TransFem-org/Sharkey.git
synced 2024-11-15 20:06:54 +01:00
c2370a1be6
* chore: Add the SPDX information to each file Add copyright and licensing information as defined in version 3.0 of the REUSE Specification. * tweak format --------- Co-authored-by: syuilo <Syuilotan@yahoo.co.jp>
48 lines
766 B
Vue
48 lines
766 B
Vue
<!--
|
|
SPDX-FileCopyrightText: syuilo and other misskey contributors
|
|
SPDX-License-Identifier: AGPL-3.0-only
|
|
-->
|
|
|
|
<template>
|
|
<div :class="[$style.root, { [$style.rootFirst]: first }]">
|
|
<div :class="[$style.label, { [$style.labelFirst]: first }]"><slot name="label"></slot></div>
|
|
<div :class="$style.main">
|
|
<slot></slot>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<script lang="ts" setup>
|
|
defineProps<{
|
|
first?: boolean;
|
|
}>();
|
|
</script>
|
|
|
|
<style lang="scss" module>
|
|
.root {
|
|
border-top: solid 0.5px var(--divider);
|
|
//border-bottom: solid 0.5px var(--divider);
|
|
}
|
|
|
|
.rootFirst {
|
|
border-top: none;
|
|
}
|
|
|
|
.label {
|
|
font-weight: bold;
|
|
padding: 1.5em 0 0 0;
|
|
margin: 0 0 16px 0;
|
|
|
|
&:empty {
|
|
display: none;
|
|
}
|
|
}
|
|
|
|
.labelFirst {
|
|
padding-top: 0;
|
|
}
|
|
|
|
.main {
|
|
margin: 1.5em 0 0 0;
|
|
}
|
|
</style>
|