Latest solutions
News Homepage - React
#react#vite#tailwind-cssSubmitted 6 months agoanything!
- still some work to do on responsiveness
Testimonials Grid
Submitted 6 months agoMedia queries for ipad/tablet portrait and landscape 👀
- i was quite broad with @media
Latest comments
- @Satjeet2005@aaronAlien
- consider adding a wrapper:
- applying flex and vh selectors to here will push the .attribution content to the bottom and still keep everything centered.
<div class="wrapper"> *your card content* </div>
.wrapper { display: flex; align-items: center; justify-content: center; flex-direction: column; height: 100vh; }
:)
- consider adding a wrapper: