mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-14 20:40:17 -05:00
Merge pull request #21679 from overleaf/jel-template-mobile
[web] Go back to full width on mobile for gallery details GitOrigin-RevId: 82ecefbd96d3693ec62ccfb70ed0eba2287bbc36
This commit is contained in:
parent
1e17fa7057
commit
9cfec57c1d
1 changed files with 12 additions and 4 deletions
|
@ -336,12 +336,20 @@
|
||||||
.template-details-container {
|
.template-details-container {
|
||||||
@include heading-xs;
|
@include heading-xs;
|
||||||
|
|
||||||
gap: var(--spacing-04) var(--spacing-11);
|
@include media-breakpoint-up(lg) {
|
||||||
display: grid;
|
gap: var(--spacing-04) var(--spacing-11);
|
||||||
grid-template-columns: auto auto;
|
display: grid;
|
||||||
|
grid-template-columns: auto auto;
|
||||||
|
}
|
||||||
|
|
||||||
.template-detail {
|
.template-detail {
|
||||||
display: contents;
|
@include media-breakpoint-down(lg) {
|
||||||
|
margin-bottom: var(--spacing-06);
|
||||||
|
}
|
||||||
|
|
||||||
|
@include media-breakpoint-up(lg) {
|
||||||
|
display: contents;
|
||||||
|
}
|
||||||
|
|
||||||
div:first-child {
|
div:first-child {
|
||||||
white-space: nowrap;
|
white-space: nowrap;
|
||||||
|
|
Loading…
Reference in a new issue