-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Feat: #5 회원가입 페이지 생성 및 마크업, CSS 스타일링
- Loading branch information
Showing
8 changed files
with
163 additions
and
8 deletions.
There are no files selected for viewing
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
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,3 +1,13 @@ | ||
@tailwind base; | ||
@tailwind components; | ||
@tailwind utilities; | ||
|
||
@layer components { | ||
.auth-btn { | ||
@apply h-[4.38rem] bg-[#E1F4D9] rounded-[10px] text-base font-bold; | ||
} | ||
|
||
.auth-input { | ||
@apply h-[4.38rem] bg-white rounded-[10px] p-4 placeholder:text-[#5E5E5E] text-sm; | ||
} | ||
} |
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 |
---|---|---|
@@ -0,0 +1,11 @@ | ||
import { Outlet } from 'react-router-dom'; | ||
import AuthGULogo from '../assets/authGULogo.svg'; | ||
|
||
export default function AuthLayout() { | ||
return ( | ||
<div className="flex flex-row justify-evenly items-center h-[100vh]"> | ||
<img src={AuthGULogo} alt="Auth GU Logo" /> | ||
<Outlet /> | ||
</div> | ||
); | ||
} |
Oops, something went wrong.
50d60df
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
설치한 라이브러리
tailwind-scrollbar-hide
: 스크롤바를 숨길 수 있게 해주는 tailwind 패키지tailwind