-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
* ๐Design: ๋ฉ์ธํ์ด์ง ๋์์ธ ์์ * ๐Fix: github workflows ์์
- Loading branch information
1 parent
d230523
commit b2a82a3
Showing
9 changed files
with
66 additions
and
52 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
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,15 @@ | ||
name: lint check | ||
|
||
on: pull_request | ||
|
||
jobs: | ||
eslint-test: | ||
name: eslint test | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- uses: actions/setup-node@v2 | ||
with: | ||
node-version: '18.18.0' | ||
- run: npm install | ||
- run: npm run lint |
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,15 @@ | ||
name: type check | ||
|
||
on: pull_request | ||
|
||
jobs: | ||
type-test: | ||
name: type test | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- uses: actions/setup-node@v2 | ||
with: | ||
node-version: '18.18.0' | ||
- run: npm install | ||
- run: npm run typecheck |
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
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
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,53 +1,50 @@ | ||
import styled from 'styled-components'; | ||
|
||
export const TopTriangleContainer = styled.div` | ||
position: relative; | ||
background-color: white; | ||
min-width: 1200px; | ||
height: 1000px; | ||
`; | ||
|
||
export const TopText = styled.p` | ||
margin-top: 100px; | ||
margin-left: 800px; | ||
margin-top: 50px; | ||
margin-left: 55%; | ||
color: #111b47; | ||
`; | ||
|
||
export const BottomText = styled.p` | ||
margin-top: 400px; | ||
margin-left: 100px; | ||
margin-top: 30%; | ||
margin-left: 5%; | ||
color: #111b47; | ||
`; | ||
|
||
export const BrandContainer = styled.div` | ||
position: absolute; | ||
width: 100%; | ||
height: 800px; | ||
clip-path: polygon(0 49%, 0 0, 100% 47%, 100% 100%); | ||
clip-path: polygon(0 0, 100% 48%, 100% 100%, 0 56%); | ||
background: rgb(2, 0, 36); | ||
background: linear-gradient(90deg, rgba(2, 0, 36, 1) 0%, rgba(28, 28, 101, 1) 37%, rgba(36, 123, 218, 1) 100%); | ||
padding: 10% 5%; | ||
`; | ||
|
||
export const BrandSmallText = styled.p` | ||
color: white; | ||
font-size: 40px; | ||
margin-top: 40px; | ||
margin-right: 10px; | ||
padding-top: 50px; | ||
`; | ||
|
||
export const BrandTextBox = styled.div` | ||
display: flex; | ||
flex-direction: row; | ||
`; | ||
|
||
export const StartedFreeButton = styled.button` | ||
background-color: white; | ||
color: #111b47; | ||
font-size: 30px; | ||
padding: 10px 20px; | ||
padding: 10px 40px; | ||
margin-left: 70%; | ||
border-radius: 10px; | ||
&:hover { | ||
background-color: #ababab; | ||
} | ||
`; | ||
export const TopTriangleContainer = styled.div` | ||
position: absolute; | ||
width: 100%; | ||
`; | ||
|
||
export const Container = styled.div` | ||
margin: 0 auto; | ||
`; |
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