@ciandm
Posted
Hi Leo,
To position that element properly on desktop, you can switch your absolute positioning from left
to right
. This will work in the same way your left
works, however it will be positioned from the right of the storage__info
container so it will remain in place even when you resize the screen. So your code will look like the below:
@media (min-width: 1200px) {
.storage-left {
left: initial; // reset the left value
right: 3rem; // this is the value of the padding on the right of the container
}
}
Hope that helps you.