Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions src/components/ImageSwiper/ImageSwiper.js
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ export default function ImageSwiper({ images }) {
{ images.map( image => (
<SwiperSlide className='swiper-slide'>
<img className='store-item-image' src={ image } alt='cool shirt brah' />
<button className='next-button'>></button>
</SwiperSlide>
))}
</Swiper>
Expand Down
1 change: 1 addition & 0 deletions src/components/Pages/About/About.css
Original file line number Diff line number Diff line change
Expand Up @@ -49,4 +49,5 @@
display: flex;
flex-direction: column;
padding: 10px 10%;
align-items: center;
}
2 changes: 1 addition & 1 deletion src/components/Pages/Contact/Contact.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import './Contact.css';
export default function Contact() {
return (
<div className="contact-wrapper">
CONTACT
MaldeveraTX@gmail.com
</div>
)
}
22 changes: 21 additions & 1 deletion src/components/Pages/Merch/StoreItem/StoreItem.css
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,8 @@

height: 400px;
width: 400px;

position: relative;
}

.store-item-info {
Expand All @@ -33,4 +35,22 @@
.store-item-purchase-button:hover {
cursor: pointer;
background-color: orange;
}
}



.next-button {
position: absolute;
top: 50%;
right: 10px;
border-radius: 40px;
}



/* to place a button over an image
( to signify horizontal scrolling ),
make the image position: relative,
and the button position: absolute,
with top: 10px, left: 10px, etc
to position the button over the image */
2 changes: 1 addition & 1 deletion src/components/Pages/Shows/Shows.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import './Shows.css';
export default function Shows() {
return (
<div className="shows-wrapper">
SHOWS
2024 Dates Coming Soon..
</div>
)
}