Fix mobile join class view
This commit is contained in:
parent
ef8a57a0b6
commit
8ad74126b7
|
|
@ -12,14 +12,18 @@
|
||||||
.simple-footer {
|
.simple-footer {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
justify-self: center;
|
justify-self: center;
|
||||||
padding: $large-spacing 0;
|
padding: $large-spacing $small-spacing;
|
||||||
background-color: $color-silver-light;
|
background-color: $color-silver-light;
|
||||||
display: grid;
|
display: grid;
|
||||||
grid-template-columns: 1fr $footer-width 1fr;
|
grid-template-columns: 0 1fr 0;
|
||||||
box-sizing: border-box;
|
box-sizing: border-box;
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
height: 105px;
|
height: 105px;
|
||||||
|
|
||||||
|
@include desktop {
|
||||||
|
grid-template-columns: 1fr $footer-width 1fr;
|
||||||
|
}
|
||||||
|
|
||||||
&__strong {
|
&__strong {
|
||||||
@include aside-with-cheese;
|
@include aside-with-cheese;
|
||||||
font-weight: 600;
|
font-weight: 600;
|
||||||
|
|
|
||||||
|
|
@ -71,7 +71,9 @@
|
||||||
}
|
}
|
||||||
|
|
||||||
&__footer {
|
&__footer {
|
||||||
grid-column: 1 / span 3;
|
@include desktop {
|
||||||
|
grid-column: 1 / span 3;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue