Describe the bug
In the new version, the buttons of the carousel are no longer aligned properly.
To Reproduce
Steps to reproduce the behavior:
Go to any artwork page (desktop version)
Scroll down to 'Related Artworks'
See error
Expected behavior
The buttons should be centered vertically.
Screenshots
Solution
Due to different slide sizes on mobile next and prev button were made to stay on the same height, so "align-items: center" was accidentally overwritten with
in carousel.component.scss. These css lines should have been added to a media query. To solve this bug just add the css lines above to the media query "@media (max-width: 575px)" instead so that these css rules are only applied on mobile.
Describe the bug In the new version, the buttons of the carousel are no longer aligned properly.
To Reproduce Steps to reproduce the behavior:
Expected behavior The buttons should be centered vertically.
Screenshots
Solution Due to different slide sizes on mobile next and prev button were made to stay on the same height, so "align-items: center" was accidentally overwritten with
in carousel.component.scss. These css lines should have been added to a media query. To solve this bug just add the css lines above to the media query "@media (max-width: 575px)" instead so that these css rules are only applied on mobile.