GEAR UP
LIKE A PRO
LIKE A PRO
Your club deserves pro-level gear. The same kit worn by Super Rugby and NRL stars. Now available for your local club.
VIEW COLLECTION
Gallery
/* Force Flickity cells to align in a row, not stack */
.js-flickity {
width: 100%;
}
/* Make carousel cells display in a horizontal row */
.carousel-cell {
display: flex;
flex-direction: column;
align-items: center;
justify-content: flex-start;
/* keeps cells same width on all screens, adjust as needed */
min-width: 160px;
max-width: 220px;
margin-right: 30px;
}
/* Responsive adjustments */
@media (max-width: 1024px) {
.carousel-cell {
min-width: 120px;
max-width: 140px;
margin-right: 16px;
}
}
/* Remove excessive margins/padding that cause wrapping/stuck cells */
.js-flickity {
padding-left: 0 !important;
padding-right: 0 !important;
}