How can I center my logo list?

how to center my logo list

@niceeee
add below css into base.css file

.logoList--item {
    align-self: center;
}

still not centered when im in mobile view

@niceeee
add below css

@media (max-width:768px)
{
.logoList--container ul {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    margin-right: 14%;
}
}

Add this code to base.css file

.logoList--container ul { padding-left: 0px !important; }
1 Like