This commit is contained in:
syuilo 2022-12-28 18:22:46 +09:00
parent 229d185354
commit 6e6d9f3029
2 changed files with 27 additions and 16 deletions

View file

@ -2,7 +2,7 @@
<button
v-if="!link"
ref="el" class="bghgjjyj _button"
:class="{ inline, primary, gradate, danger, rounded, full }"
:class="{ inline, primary, gradate, danger, rounded, full, small }"
:type="type"
@click="emit('click', $event)"
@mousedown="onMousedown"
@ -14,7 +14,7 @@
</button>
<MkA
v-else class="bghgjjyj _button"
:class="{ inline, primary, gradate, danger, rounded, full }"
:class="{ inline, primary, gradate, danger, rounded, full, small }"
:to="to"
@mousedown="onMousedown"
>
@ -40,6 +40,7 @@ const props = defineProps<{
wait?: boolean;
danger?: boolean;
full?: boolean;
small?: boolean;
}>();
const emit = defineEmits<{
@ -125,6 +126,11 @@ function onMousedown(evt: MouseEvent): void {
background: var(--buttonHoverBg);
}
&.small {
font-size: 90%;
padding: 6px 12px;
}
&.full {
width: 100%;
}