odin-codespace/shopping-cart/src/components/main.module.css
Smig 50b50915de
Shopping cart (#19)
* feat: navbar and main components added

* feat: add shopping cart

* added cart and store components

* basic functionality complete

* fix: effect

* adding more logic and components

* basic features

* reorg tree and add summary

* feat: new stuff

* styling: more stuff

* changes

* as good as itll get

* added public

---------

Co-authored-by: mike <mike@windows>
2024-11-22 20:47:46 -05:00

33 lines
417 B
CSS

main {
padding: 0 1rem;
}
.container {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
height: 100vh;
}
.mainHeading {
font-size: 4rem;
margin: 0;
}
.sub-heading {
font-size: 1.5rem;
}
.heading-color {
color: #0e6c96;
}
.hero-img {
margin-top: 100px;
width: 100%;
max-height: 800px;
vertical-align: middle;
object-fit: contain;
float: left;
}