-
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
Showing
9 changed files
with
273 additions
and
60 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
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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
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
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,9 @@ | ||
.footer-cls { | ||
border-top: 1px solid #2a2b31; | ||
margin-top: 50px; | ||
display: flex; | ||
align-items: center; | ||
justify-content: center; | ||
|
||
padding: 36px 10px 64px 10px; | ||
} |
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 @@ | ||
import React from "react" | ||
import { footerCls } from "./footer.module.css" | ||
|
||
const Footer = () => { | ||
return ( | ||
<footer className={footerCls}> | ||
© {new Date().getFullYear()}, Built with | ||
{` `} | ||
<a href="https://www.gatsbyjs.com">Gatsby</a> | ||
</footer> | ||
) | ||
} | ||
|
||
export default Footer |
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,66 @@ | ||
.wrapper { | ||
display: flex; | ||
align-items: center; | ||
justify-content: center; | ||
margin-top: 86px; | ||
} | ||
|
||
.btn { | ||
width: 40px; | ||
height: 40px; | ||
border-radius: 10px; | ||
border: 1px solid #2a2b31; | ||
color: #000000; | ||
|
||
font-family: IBM Plex Mono; | ||
font-size: 14px; | ||
font-weight: 400; | ||
line-height: 14px; | ||
cursor: pointer; | ||
|
||
&.prev-btn { | ||
margin-right: 35px; | ||
} | ||
|
||
&.next-btn { | ||
margin-left: 35px; | ||
} | ||
|
||
&.disabled { | ||
pointer-events: none; | ||
opacity: 0.5; | ||
} | ||
} | ||
|
||
.pages { | ||
display: flex; | ||
column-gap: 13px; | ||
margin: 0; | ||
} | ||
|
||
.page { | ||
display: flex; | ||
justify-content: center; | ||
align-items: center; | ||
border-radius: 10px; | ||
width: 40px; | ||
height: 40px; | ||
border: 1px solid #2a2b31; | ||
color: #000000; | ||
|
||
font-family: IBM Plex Mono; | ||
font-size: 14; | ||
font-weight: 400; | ||
line-height: 14; | ||
|
||
cursor: pointer; | ||
|
||
&.active { | ||
background-color: #ff740f; | ||
} | ||
|
||
&.ellipsis { | ||
cursor: default; | ||
color: $ellipsis--color; | ||
} | ||
} |
Oops, something went wrong.