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 {
|
||||
@include heading-xs;
|
||||
|
||||
gap: var(--spacing-04) var(--spacing-11);
|
||||
display: grid;
|
||||
grid-template-columns: auto auto;
|
||||
@include media-breakpoint-up(lg) {
|
||||
gap: var(--spacing-04) var(--spacing-11);
|
||||
display: grid;
|
||||
grid-template-columns: auto auto;
|
||||
}
|
||||
|
||||
.template-detail {
|
||||
display: contents;
|
||||
@include media-breakpoint-down(lg) {
|
||||
margin-bottom: var(--spacing-06);
|
||||
}
|
||||
|
||||
@include media-breakpoint-up(lg) {
|
||||
display: contents;
|
||||
}
|
||||
|
||||
div:first-child {
|
||||
white-space: nowrap;
|
||||
|
|
Loading…
Reference in a new issue