Fix mobile join class view

This commit is contained in:
Christian Cueni 2021-07-14 11:38:46 +02:00
parent ef8a57a0b6
commit 8ad74126b7
2 changed files with 9 additions and 3 deletions

View File

@ -12,14 +12,18 @@
.simple-footer {
width: 100%;
justify-self: center;
padding: $large-spacing 0;
padding: $large-spacing $small-spacing;
background-color: $color-silver-light;
display: grid;
grid-template-columns: 1fr $footer-width 1fr;
grid-template-columns: 0 1fr 0;
box-sizing: border-box;
overflow: hidden;
height: 105px;
@include desktop {
grid-template-columns: 1fr $footer-width 1fr;
}
&__strong {
@include aside-with-cheese;
font-weight: 600;

View File

@ -71,7 +71,9 @@
}
&__footer {
grid-column: 1 / span 3;
@include desktop {
grid-column: 1 / span 3;
}
}
}