Fix instrument overview page styling on mobile
This commit is contained in:
parent
95461b1de8
commit
52a4411f3e
|
|
@ -59,6 +59,7 @@ export default {
|
||||||
&__title {
|
&__title {
|
||||||
@include heading-3;
|
@include heading-3;
|
||||||
margin-bottom: 0;
|
margin-bottom: 0;
|
||||||
|
overflow-wrap: break-word;
|
||||||
}
|
}
|
||||||
|
|
||||||
&__category {
|
&__category {
|
||||||
|
|
|
||||||
|
|
@ -100,9 +100,10 @@ export default {
|
||||||
|
|
||||||
&__list {
|
&__list {
|
||||||
padding: $large-spacing 0;
|
padding: $large-spacing 0;
|
||||||
max-width: $screen-width;
|
max-width: min($screen-width, 100vw);
|
||||||
width: 100%;
|
width: 100%;
|
||||||
display: flex;
|
display: flex;
|
||||||
|
overflow: hidden;
|
||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
justify-self: center;
|
justify-self: center;
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue