I am trying to add css to all the elements with the class menu-icon and menu-title, but when doing so with js, I only add the css to the first element. I mean, I have about 10 elements with that label but it only adds the style to the first one
var x = document.getElementsByClassName("menu-title")[0];
x.style.marginLeft = "25px";
var y = document.getElementsByClassName("menu-icon")[0];
y.style.backgroundSize = "contain";