-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
수진
authored and
수진
committed
Dec 19, 2024
1 parent
83069b8
commit 1e0d7f4
Showing
9 changed files
with
199 additions
and
9 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,11 @@ | ||
import type { NextConfig } from "next"; | ||
import type { NextConfig } from 'next'; | ||
import path from 'path'; | ||
|
||
const nextConfig: NextConfig = { | ||
/* config options here */ | ||
reactStrictMode: true, | ||
sassOptions: { | ||
includePaths: [path.join(__dirname, 'src')], | ||
}, | ||
}; | ||
|
||
export default nextConfig; |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Empty file.
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,24 @@ | ||
@use '@/assets/variables' as *; | ||
@import url('https://cdn.jsdelivr.net/gh/orioncactus/[email protected]/dist/web/variable/pretendardvariable.min.css'); | ||
@import '@/assets/reset.scss'; | ||
|
||
body { | ||
font-family: Pretendard; | ||
} | ||
|
||
button, | ||
input, | ||
select, | ||
textarea { | ||
appearance: none; | ||
color: inherit; | ||
font-family: inherit; | ||
font-size: inherit; | ||
line-height: inherit; | ||
background-color: inherit; | ||
} | ||
|
||
a { | ||
text-decoration: none; | ||
color: inherit; | ||
} |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
@use '@/assets/variables' as *; | ||
.homeTag { | ||
background-color: $green; | ||
color: $red; | ||
border: $border-red; | ||
border-radius: $radi; | ||
} |
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,5 +1,5 @@ | ||
// import styles from "./page.module.scss"; | ||
import styles from "./page.module.scss"; | ||
|
||
export default function Home() { | ||
return <div>home</div>; | ||
return <div className={styles.homeTag}>home</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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
@use '@/assets/variables' as *; | ||
* { | ||
padding: 0; | ||
margin: 0; | ||
border: 0; | ||
box-sizing: border-box; | ||
background-color: $white; | ||
} | ||
|
||
body { | ||
font-family: Pretendard; | ||
background-color: $white; | ||
transition: background-color 0.3s ease; | ||
} |
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,36 @@ | ||
$dark-black: #17171c; | ||
$black: #181d26; | ||
$light-black: #2e2e3a; | ||
$border-black: #353542; | ||
|
||
$dark-gray: #6e6e82; | ||
$gray: #9fa6b2; | ||
$white: #f1f1f5; | ||
|
||
$indigo: #5363ff; | ||
$blue: #5097fa; | ||
$gradient: linear-gradient(91deg, $blue 0%, $indigo 100%); | ||
|
||
$yellow: #ffc83c; | ||
$green: #05d58b; | ||
$pink: #ff2f9f; | ||
$red: #ff0000; | ||
|
||
$radi: 8px; | ||
$radi-rank: 50px; | ||
$radi-cates: 6px; | ||
$radi-catef: 100px; | ||
$radi-modal: 16px; | ||
|
||
$border-red: 1px solid $red; | ||
$border-black: 1px solid $border-black; | ||
$border-blue: 1px solid $blue; | ||
|
||
$pad-input: 23px 20px; | ||
$pad-button: 24px 288px; | ||
$pad-search: 16px 20px; | ||
$pad-menu: 15px 20px; | ||
$pad-cate: 4px 10px; | ||
$pad-cates: 4px 8px; | ||
$pad-catec: 8px 10px; | ||
$pad-stat: 30px 74px; |