Skip to content

Commit a00f1ce

Browse files
committed
UIも어느정도완성
1 parent 7abaa9e commit a00f1ce

File tree

3 files changed

+70
-40
lines changed

3 files changed

+70
-40
lines changed

src/components/Contributors.tsx

+23-12
Original file line numberDiff line numberDiff line change
@@ -314,24 +314,35 @@ export const Contributors = () => {
314314
{/* 科目別過去問情報ページのメインレイアウト */}
315315
<Center>
316316
<Stack>
317-
<Heading
318-
fontFamily="serif"
319-
fontSize="50px"
320-
textAlign="center"
321-
textShadow="3px 3px 6px rgba(0, 0, 0, 0.4)"
322-
color="blackAlpha.700"
323-
letterSpacing="wide"
324-
fontWeight="bold"
325-
mb={4}
326-
>
327-
📚過去問登録ページ
328-
</Heading>
317+
<Box position="relative" padding="1rem .5rem" mb={5}>
318+
<Heading
319+
fontFamily="serif"
320+
fontSize="50px"
321+
textAlign="center"
322+
textShadow="3px 3px 6px rgba(0, 0, 0, 0.4)"
323+
color="blackAlpha.700"
324+
letterSpacing="wide"
325+
fontWeight="bold"
326+
>
327+
過去問登録ページ
328+
</Heading>
329+
<Box
330+
position="absolute"
331+
bottom="0"
332+
left="0"
333+
width="100%"
334+
height="4px"
335+
content='""'
336+
backgroundImage="linear-gradient(to left, #30cfd0 0%, #330867 100%)"
337+
/>
338+
</Box>
329339

330340
<Button
331341
bgColor="blackAlpha.700"
332342
color="white"
333343
border="2px"
334344
mb="30px"
345+
borderRadius="full"
335346
onClick={onOpen}
336347
_hover={{
337348
bgColor: "white",

src/components/CreatePost.tsx

+24-15
Original file line numberDiff line numberDiff line change
@@ -298,24 +298,34 @@ export const CreatePost = () => {
298298
{/* 以下過去問募集のメインページ */}
299299
<Center mb="30px">
300300
<Stack>
301-
302-
<Heading
303-
fontFamily="serif"
304-
fontSize="50px"
305-
textAlign="center"
306-
textShadow="3px 3px 6px rgba(0, 0, 0, 0.4)"
307-
color="blackAlpha.700"
308-
letterSpacing="wide"
309-
fontWeight="bold"
310-
mb={4}
311-
>
312-
📣過去問募集ページ
313-
</Heading>
301+
<Box position="relative" padding="1rem .5rem" mb={5}>
302+
<Heading
303+
fontFamily="serif"
304+
fontSize="50px"
305+
textAlign="center"
306+
textShadow="3px 3px 6px rgba(0, 0, 0, 0.4)"
307+
color="blackAlpha.700"
308+
letterSpacing="wide"
309+
fontWeight="bold"
310+
>
311+
過去問募集ページ
312+
</Heading>
313+
<Box
314+
position="absolute"
315+
bottom="0"
316+
left="0"
317+
width="100%"
318+
height="4px"
319+
content='""'
320+
backgroundImage="linear-gradient(to left, #30cfd0 0%, #330867 100%)"
321+
/>
322+
</Box>
314323

315324
<Button
316325
bgColor="blackAlpha.700"
317326
color="white"
318327
border="2px"
328+
borderRadius="full"
319329
_hover={{
320330
bgColor: "white",
321331
color: "blackAlpha.700",
@@ -352,7 +362,7 @@ export const CreatePost = () => {
352362
{kakomonPost.description}
353363
</Td>
354364
<Td>
355-
<Button
365+
<Button
356366
colorScheme="blackAlpha"
357367
onClick={() => handleChatOpen(kakomonPost)}
358368
>
@@ -362,7 +372,6 @@ export const CreatePost = () => {
362372
style={{ marginLeft: "8px" }}
363373
/>
364374
</Button>
365-
366375
</Td>
367376
</Tr>
368377
))}

src/components/DetailApp.tsx

+23-13
Original file line numberDiff line numberDiff line change
@@ -20,18 +20,28 @@ export const DetailApp = () => {
2020
<>
2121
<Center>
2222
<Stack>
23-
<Heading
24-
fontFamily="serif"
25-
fontSize="50px"
26-
textAlign="center"
27-
textShadow="3px 3px 6px rgba(0, 0, 0, 0.4)"
28-
color="blackAlpha.700"
29-
letterSpacing="wide"
30-
fontWeight="bold"
31-
mb={4}
32-
>
33-
🧑‍💻管理者ページ
34-
</Heading>
23+
<Box position="relative" padding="1rem .5rem" mb={5}>
24+
<Heading
25+
fontFamily="serif"
26+
fontSize="50px"
27+
textAlign="center"
28+
textShadow="3px 3px 6px rgba(0, 0, 0, 0.4)"
29+
color="blackAlpha.700"
30+
letterSpacing="wide"
31+
fontWeight="bold"
32+
>
33+
管理者ページ
34+
</Heading>
35+
<Box
36+
position="absolute"
37+
bottom="0"
38+
left="0"
39+
width="100%"
40+
height="4px"
41+
content='""'
42+
backgroundImage="linear-gradient(to left, #30cfd0 0%, #330867 100%)"
43+
/>
44+
</Box>
3545
<Card maxW="md" m="auto" mt="20px" variant="outline" boxShadow="lg">
3646
<CardBody m="auto">
3747
<Flex gap="4" alignItems="center" mb="20px">
@@ -80,7 +90,7 @@ export const DetailApp = () => {
8090
</Stack>
8191
</Center>
8292
{/* 現状更新情報はハードコーディングしている(本当はここもDBで管理したほうが良さそう) */}
83-
<Text fontSize="30px" fontWeight="bold">
93+
<Text fontSize="30px" fontWeight="bold" mt="50px">
8494
<Text as="span" fontSize="36px" color="green.500">
8595
8696
</Text>

0 commit comments

Comments
 (0)