[Vuejs]-Move element up a bit

1👍

Just give the elements you want moved up slightly a position of relative and then top minus the amount you want

for example

.product-images-popup-number {
    display: flex;
    align-items: flex-start;
    position: relative;
    top: -5px;
} 

and then obviously use media queries to adjust it as you please

Leave a comment