Ver código fonte

:art: tweaking reverse ordering for list | undoing reverse order on large pages

tags/0.9.0
J 4 anos atrás
pai
commit
3d50364d4e
1 arquivos alterados com 7 adições e 4 exclusões
  1. 7
    4
      vue-theme/src/pages/list.vue

+ 7
- 4
vue-theme/src/pages/list.vue Ver arquivo

@@ -208,7 +208,8 @@ export default {
208 208
 @import '../sss/variables.sss'
209 209
 @import '../sss/theme.sss'
210 210
 .page--list 
211
-    flex-direction: column-reverse
211
+    /* Puts the aside bar on top */
212
+    flex-direction: column-reverse !important
212 213
     article
213 214
         > header
214 215
             padding: 1em
@@ -243,13 +244,15 @@ export default {
243 244
             align-items: start
244 245
             /* This is important for how the grid lines up to the page */
245 246
             justify-content: right 
246
-            .post img
247
-                width: 100%
247
+            .post 
248
+                min-width: 177px
249
+                img
250
+                    width: 100%
248 251
 
249 252
 @media (min-width: $medium)
250 253
     .page--list
251 254
         &.f-col
252
-            flex-direction: row
255
+            flex-direction: row !important
253 256
         > article
254 257
             margin: 0 $ms--2 0 0
255 258
             .posts.is-grid

Carregando…
Cancelar
Salvar