Browse Source

Make width breakpoint for removing margins consistent and match upstream

Fixes #1136
closed-social-glitch-2
Thibaut Girka 5 years ago
committed by ThibG
parent
commit
fabfa90e6c
3 changed files with 6 additions and 6 deletions
  1. +3
    -3
      app/javascript/flavours/glitch/styles/components/columns.scss
  2. +1
    -1
      app/javascript/flavours/glitch/styles/components/drawer.scss
  3. +2
    -2
      app/javascript/flavours/glitch/styles/components/single_column.scss

+ 3
- 3
app/javascript/flavours/glitch/styles/components/columns.scss View File

@ -43,7 +43,7 @@
display: flex;
flex-direction: column;
@media screen and (min-width: 360px) {
@media screen and (min-width: $no-gap-breakpoint) {
padding: 0 10px;
}
}
@ -466,14 +466,14 @@
}
.auto-columns.navbar-under {
@media screen and (max-width: 360px) {
@media screen and (max-width: $no-gap-breakpoint) {
@include fix-margins-for-navbar-under;
}
}
.auto-columns.navbar-under .react-swipeable-view-container .columns-area,
.single-column.navbar-under .react-swipeable-view-container .columns-area {
@media screen and (max-width: 360px) {
@media screen and (max-width: $no-gap-breakpoint) {
height: 100% !important;
}
}

+ 1
- 1
app/javascript/flavours/glitch/styles/components/drawer.scss View File

@ -78,7 +78,7 @@
margin-bottom: 10px;
flex: none;
@include limited-single-column('screen and (max-width: 360px)') { margin-bottom: 0 }
@include limited-single-column('screen and (max-width: #{$no-gap-breakpoint})') { margin-bottom: 0 }
@include single-column('screen and (max-width: 630px)') { font-size: 16px }
}

+ 2
- 2
app/javascript/flavours/glitch/styles/components/single_column.scss View File

@ -98,7 +98,7 @@
top: 15px;
}
@media screen and (min-width: 360px) {
@media screen and (min-width: $no-gap-breakpoint) {
padding: 10px 0;
}
@ -184,7 +184,7 @@
}
}
@media screen and (min-width: 360px) {
@media screen and (min-width: $no-gap-breakpoint) {
.tabs-bar {
margin: 10px auto;
margin-bottom: 0;

Loading…
Cancel
Save