-
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.
- Big site UI / styles overhaul, adding many custom styles, shadows, borders, css animations - Moved some CSSs and deleted redundant files - Fixed multiple CSS issues with responsive behavior, adding proper mobile styles - Added site footer and links - Fixed women/men incorrect name/path
- Loading branch information
Felipe Spengler
committed
Apr 6, 2024
1 parent
0312778
commit 8c578c7
Showing
23 changed files
with
222 additions
and
92 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.
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
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 |
---|---|---|
|
@@ -8,6 +8,7 @@ | |
img { | ||
width: 30%; | ||
object-fit: cover; | ||
border-radius: 8px; | ||
} | ||
|
||
.item-details { | ||
|
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
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,26 @@ | ||
import './footer.styles.scss'; | ||
|
||
import githubIcon from "../../assets/github-mark.svg"; | ||
import linkedinIcon from "../../assets/linkedin.svg"; | ||
|
||
const FooterComponent = () => { | ||
return ( | ||
<div className='container footer'> | ||
<div className='footer-content'> | ||
<span> | ||
2024 - React e-commerce demo site (<a href='https://github.com/fleps/clothing-store' className='underline' target='_blank'>repo</a>) | ||
</span> | ||
<div className='footer-icons'> | ||
<a href='https://www.linkedin.com/in/fleps/' target='_blank'> | ||
<img src={linkedinIcon} alt='LinkedIn' /> | ||
</a> | ||
<a href='https://github.com/fleps' title='fleps github profile'> | ||
<img src={githubIcon} alt='Github' /> | ||
</a> | ||
</div> | ||
</div> | ||
</div> | ||
); | ||
} | ||
|
||
export default FooterComponent; |
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,27 @@ | ||
.footer { | ||
background-color: #e7e7e7; | ||
padding: 30px 20px; | ||
margin: auto 0 0; | ||
max-width: 100%; | ||
|
||
.footer-content { | ||
width: 100%; | ||
max-width: 1440px; | ||
margin: auto; | ||
display: flex; | ||
justify-content: space-between; | ||
} | ||
|
||
@media only screen and (max-width: 1140px ) { | ||
.checkout-container + & { | ||
margin: auto 0 53px; | ||
} | ||
} | ||
|
||
.footer-icons { | ||
display: grid; | ||
grid-template-columns: repeat(2, 1fr); | ||
gap: 15px; | ||
} | ||
|
||
} |
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 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
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.