Skip to content

Commit 28a1f7b

Browse files
committed
修正回复上按钮在响应式布局下面显示的问题. [skip ci]
1 parent 65065e4 commit 28a1f7b

File tree

1 file changed

+7
-2
lines changed

1 file changed

+7
-2
lines changed

app/assets/stylesheets/front.scss

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -159,13 +159,16 @@
159159

160160
#topic-sidebar {
161161
position: fixed;
162+
display: none;
162163
width: 260px;
163164

164-
@media (min-width: 992px) {
165+
@media (min-width: 960px) {
166+
display: block;
165167
width: 242px;
166168
}
167169

168170
@media (min-width: 1200px) {
171+
display: block;
169172
width: 292px;
170173
}
171174

@@ -266,7 +269,9 @@
266269
}
267270
}
268271

269-
.hideable { display: none; }
272+
@media (min-width: 1026px) {
273+
.hideable { display: none; }
274+
}
270275
&:hover {
271276
.hideable { display: inline-block; }
272277
}

0 commit comments

Comments
 (0)