pull down to refresh
50 sats \ 1 reply \ @cryptoshalix 28 Nov 2023 \ parent \ on: You wanna dev? meta
Thanks a lot!! šš»
Yep, I tried Vue and React, but I'm used to Angular right now.
š¤ Also some friends and family had problems with overlapping and scrolls.
Not my case, so, it is hard to test and repair. Gonna look whenever I have time.
Thanks a lot for those tips.
It's probably due to fixed heights.
Looking again, I found the
.content-games-item
class has min-height: 450px
and max-height: 450px;
set to it.Generally you shouldn avoid forcing the height (at least not
max-height
), You're already using display: grid
on the cards container, their height will be automatically adapted to the longest one, if the button seems to stick on top leaving a gap, you can push down them by expanding the flex items above with flex: 1
or by setting a margin-[top|block-start]: auto
on the buttons container.Hope it helps you, keep it up!
reply