Hi there, I have this css setup:
@media screen and (max-width:978px) {
$el {
display: flex;
justify-content: center;
}
I want to also adjust the size of the image (this is to shrink it down on mobiles) I added width: 80% but then the alignment above fails, and it resorts back to left aligned.
How do I center it and adjust the size?