parent
88698462a9
commit
d8bf1ff7e9
|
@ -125,7 +125,7 @@ export class ApiServerService {
|
||||||
fastify.post<{
|
fastify.post<{
|
||||||
Body: {
|
Body: {
|
||||||
username: string;
|
username: string;
|
||||||
password: string;
|
password?: string;
|
||||||
token?: string;
|
token?: string;
|
||||||
credential?: AuthenticationResponseJSON;
|
credential?: AuthenticationResponseJSON;
|
||||||
'hcaptcha-response'?: string;
|
'hcaptcha-response'?: string;
|
||||||
|
|
|
@ -8,7 +8,7 @@ SPDX-License-Identifier: AGPL-3.0-only
|
||||||
:class="[
|
:class="[
|
||||||
$style.root,
|
$style.root,
|
||||||
tail === 'left' ? $style.left : $style.right,
|
tail === 'left' ? $style.left : $style.right,
|
||||||
negativeMargin === true && $style.negativeMergin,
|
negativeMargin === true && $style.negativeMargin,
|
||||||
shadow === true && $style.shadow,
|
shadow === true && $style.shadow,
|
||||||
]"
|
]"
|
||||||
>
|
>
|
||||||
|
@ -54,7 +54,7 @@ withDefaults(defineProps<{
|
||||||
&.left {
|
&.left {
|
||||||
padding-left: calc(var(--fukidashi-radius) * .13);
|
padding-left: calc(var(--fukidashi-radius) * .13);
|
||||||
|
|
||||||
&.negativeMergin {
|
&.negativeMargin {
|
||||||
margin-left: calc(calc(var(--fukidashi-radius) * .13) * -1);
|
margin-left: calc(calc(var(--fukidashi-radius) * .13) * -1);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -62,7 +62,7 @@ withDefaults(defineProps<{
|
||||||
&.right {
|
&.right {
|
||||||
padding-right: calc(var(--fukidashi-radius) * .13);
|
padding-right: calc(var(--fukidashi-radius) * .13);
|
||||||
|
|
||||||
&.negativeMergin {
|
&.negativeMargin {
|
||||||
margin-right: calc(calc(var(--fukidashi-radius) * .13) * -1);
|
margin-right: calc(calc(var(--fukidashi-radius) * .13) * -1);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue