Skip to content

Commit

Permalink
#14675 レビューの修正 (#14705)
Browse files Browse the repository at this point in the history
  • Loading branch information
kakkokari-gtyih authored Oct 5, 2024
1 parent 8869846 commit d8bf1ff
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion packages/backend/src/server/api/ApiServerService.ts
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ export class ApiServerService {
fastify.post<{
Body: {
username: string;
password: string;
password?: string;
token?: string;
credential?: AuthenticationResponseJSON;
'hcaptcha-response'?: string;
Expand Down
6 changes: 3 additions & 3 deletions packages/frontend/src/components/MkFukidashi.vue
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ SPDX-License-Identifier: AGPL-3.0-only
:class="[
$style.root,
tail === 'left' ? $style.left : $style.right,
negativeMargin === true && $style.negativeMergin,
negativeMargin === true && $style.negativeMargin,
shadow === true && $style.shadow,
]"
>
Expand Down Expand Up @@ -54,15 +54,15 @@ withDefaults(defineProps<{
&.left {
padding-left: calc(var(--fukidashi-radius) * .13);

&.negativeMergin {
&.negativeMargin {
margin-left: calc(calc(var(--fukidashi-radius) * .13) * -1);
}
}

&.right {
padding-right: calc(var(--fukidashi-radius) * .13);

&.negativeMergin {
&.negativeMargin {
margin-right: calc(calc(var(--fukidashi-radius) * .13) * -1);
}
}
Expand Down

0 comments on commit d8bf1ff

Please sign in to comment.