NestJS backend rewrite; migrate client to FluentUI V9

This commit is contained in:
2025-09-18 15:48:08 +09:00
parent 32ff36a12c
commit 34529cea68
62 changed files with 5642 additions and 3679 deletions

View File

@ -1,4 +1,5 @@
import { Flex, Text } from '@mantine/core';
import { Text } from "@fluentui/react-components";
interface CardInfoLabelProps {
label: string;
value: string | number;
@ -9,14 +10,14 @@ export default function CardInfoLabel({
value
}: CardInfoLabelProps) {
return (
<Flex justify='space-between' align='center'>
<div style={{ display: 'flex', justifyContent: 'space-between', alignItems: 'center' }}>
<Text>
{label}
</Text>
<Text fw={600}>
<Text weight='semibold'>
{value}
</Text>
</Flex>
</div>
)
}