0144408500
* wip * Update maps.ts * wip * wip * wip * wip * Update base.vue * wip * wip * wip * wip * Update link.vue * wip * wip * wip * wip * wip * wip * wip * wip * wip * Update privacy.vue * wip * wip * wip * wip * Update range.vue * wip * wip * wip * wip * Update profile.vue * wip * Update a.vue * Update index.vue * wip * Update sidebar.vue * wip * wip * Update account-info.vue * Update a.vue * wip * wip * Update sounds.vue * wip * wip * wip * wip * wip * wip * wip * wip * Update account-info.vue * Update account-info.vue * wip * wip * wip * Update d-persimmon.json5 * wip
43 lines
815 B
Vue
43 lines
815 B
Vue
<template>
|
|
<div class="vrtktovg _formItem" v-size="{ max: [500] }">
|
|
<div class="_formLabel"><slot name="label"></slot></div>
|
|
<div class="main _form_group">
|
|
<slot></slot>
|
|
</div>
|
|
<div class="_formCaption"><slot name="caption"></slot></div>
|
|
</div>
|
|
</template>
|
|
|
|
<script lang="ts">
|
|
import { defineComponent } from 'vue';
|
|
|
|
export default defineComponent({
|
|
});
|
|
</script>
|
|
|
|
<style lang="scss" scoped>
|
|
.vrtktovg {
|
|
> .main {
|
|
> ::v-deep(*) {
|
|
margin: 0;
|
|
|
|
&:not(:first-child) {
|
|
&._formPanel, ._formPanel {
|
|
border-top: none;
|
|
border-top-left-radius: 0;
|
|
border-top-right-radius: 0;
|
|
}
|
|
}
|
|
|
|
&:not(:last-child) {
|
|
&._formPanel, ._formPanel {
|
|
border-bottom: solid 0.5px var(--divider);
|
|
border-bottom-left-radius: 0;
|
|
border-bottom-right-radius: 0;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
</style>
|