Skip to content

Commit

Permalink
style: 과제 등록 background 색 변경
Browse files Browse the repository at this point in the history
  • Loading branch information
mingkyeongg committed Nov 15, 2024
1 parent 04fb066 commit bc18296
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/features/assignment/AssignCreation.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ import { css } from '@emotion/react';
import { useNavigate } from 'react-router-dom';
import routePaths from '@constants/routePaths.ts';
import { createAssign } from '@/api/assignment';
import colorTheme from '@/styles/theme';

interface AssignCreationProps {
studyId: number;
Expand Down Expand Up @@ -51,7 +52,7 @@ export default function AssignCreation({ studyId }: AssignCreationProps) {
};

return (
<DefaultPaddedContainer css={{ boxShadow: '0 2px 2px rgba(0, 0, 0, 0.1)' }}>
<DefaultPaddedContainer css={{ boxShadow: '0 2px 2px rgba(0, 0, 0, 0.1)', backgroundColor: `${colorTheme.colors.absolute.white}` }}>
<Container direction="column" padding="60px" align="flex-start">
<Container justify="flex-start" padding="20px 0">
<Heading.H2 weight="bold">과제 등록하기</Heading.H2>
Expand Down

0 comments on commit bc18296

Please sign in to comment.