-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #46 from arazaki/feat/update-general-styles
Feat/update general styles
- Loading branch information
Showing
13 changed files
with
355 additions
and
359 deletions.
There are no files selected for viewing
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,14 @@ | ||
import { FC, ReactNode } from 'react'; | ||
import styles from './ContentContainer.module.css'; | ||
import { FC, ReactNode } from "react" | ||
import styles from "./ContentContainer.module.css" | ||
|
||
interface Props { | ||
children: React.ReactNode; | ||
children: React.ReactNode | ||
} | ||
|
||
export const ContentContainer: FC<{ children: ReactNode }> = ({ children }) => { | ||
return ( | ||
<div className={`flex-1 container mx-auto ${styles.container}`}> | ||
<div className="h-full w-full flex flex-col justify-center"> | ||
{children} | ||
</div> | ||
<div className={`container mx-auto flex-1 ${styles.container}`}> | ||
<div className="flex w-full flex-col justify-center">{children}</div> | ||
</div> | ||
); | ||
}; | ||
) | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.