Skip to content
This repository was archived by the owner on Oct 29, 2020. It is now read-only.

Commit b48a750

Browse files
committed
Merge pull request #5545 from DFurnes/finder-chrome-column-bugginess
Fix issue with column overflow in Chrome 45.
2 parents 6ac3dd2 + 04f798d commit b48a750

File tree

1 file changed

+6
-5
lines changed
  • lib/themes/dosomething/paraneue_dosomething/scss/content

1 file changed

+6
-5
lines changed

lib/themes/dosomething/paraneue_dosomething/scss/content/_finder.scss

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,9 @@
2929
}
3030

3131
li {
32-
display: inline;
32+
float: left;
33+
clear: both;
34+
display: inline-block;
3335
position: relative;
3436
margin: 0;
3537
break-inside: avoid;
@@ -125,7 +127,6 @@
125127

126128
.error {
127129
clear: both;
128-
// margin-top: 18px;
129130
}
130131

131132
input[type="checkbox"] {
@@ -139,7 +140,7 @@
139140
label {
140141
clear: none;
141142
float: none;
142-
display: block;
143+
display: inline-block;
143144
height: auto;
144145
font-size: 14px;
145146
font-weight: $weight-normal;
@@ -152,8 +153,8 @@
152153
transition: left 0.1s linear;
153154

154155
@include media($tablet) {
155-
padding-bottom: 4px;
156-
padding-top: 4px;
156+
padding-bottom: 2px;
157+
padding-top: 2px;
157158
}
158159
}
159160

0 commit comments

Comments
 (0)