Fix instrument overview page styling on mobile

This commit is contained in:
Ramon Wenger 2023-02-22 12:12:44 +01:00
parent 95461b1de8
commit 52a4411f3e
2 changed files with 3 additions and 1 deletions

View File

@ -59,6 +59,7 @@ export default {
&__title {
@include heading-3;
margin-bottom: 0;
overflow-wrap: break-word;
}
&__category {

View File

@ -100,9 +100,10 @@ export default {
&__list {
padding: $large-spacing 0;
max-width: $screen-width;
max-width: min($screen-width, 100vw);
width: 100%;
display: flex;
overflow: hidden;
flex-direction: column;
justify-self: center;
}