Denne kode bruges til at ændre “Min konto”-fanerne til horisontal scrolling, når skærmbredden er 1024 px eller mindre. Det giver et mere strømlinet og ensartet design på “Min konto”-siden, så fanerne ikke fremstår spredt og uens placeret.
@media (max-width: 1024px) {
.woocommerce-MyAccount-navigation ul {
display: flex !important;
flex-wrap: nowrap !important;
overflow-x: auto !important;
-webkit-overflow-scrolling: touch !important;
scrollbar-width: thin !important;
gap: 0px;
}
.woocommerce-MyAccount-navigation li {
flex: 0 0 auto !important;
}
.woocommerce-MyAccount-navigation ul::-webkit-scrollbar {
display: none !important;
}
}