Ver código fonte

:fire: removing style to help debug

tags/0.9.0
J 4 anos atrás
pai
commit
cc3e10f56b

+ 1
- 0
vue-theme/src/components/card.vue Ver arquivo

37
 @import '../sss/variables.sss'
37
 @import '../sss/variables.sss'
38
 @import '../sss/theme.sss'
38
 @import '../sss/theme.sss'
39
 .card
39
 .card
40
+    background-color: white
40
     padding: $ms--1
41
     padding: $ms--1
41
     overflow: hidden
42
     overflow: hidden
42
     text-overflow: clip
43
     text-overflow: clip

+ 4
- 4
vue-theme/src/pages/index.vue Ver arquivo

9
         section(v-if="allSticky && Object.keys(allSticky).length").stickies
9
         section(v-if="allSticky && Object.keys(allSticky).length").stickies
10
             ul.flipped(:class="[`sticky-${Object.keys(allSticky).length}`]")
10
             ul.flipped(:class="[`sticky-${Object.keys(allSticky).length}`]")
11
                 //- if sticky
11
                 //- if sticky
12
-                li.shadow.post(v-for="sticky in allSticky")
12
+                li.post(v-for="sticky in allSticky")
13
                     card(:content="sticky" :type="`${sticky.type}`")
13
                     card(:content="sticky" :type="`${sticky.type}`")
14
         
14
         
15
         //- firstRow: ['episodes', 'exhibitions', 'events', 'shorts', 'posts'], exceprt on episodes only.
15
         //- firstRow: ['episodes', 'exhibitions', 'events', 'shorts', 'posts'], exceprt on episodes only.
16
         section
16
         section
17
             ul
17
             ul
18
-                li.shadow.post(v-for="type in firstRow")
18
+                li.post(v-for="type in firstRow")
19
                     card(:content="firstPostOfType(type)" :type="type")
19
                     card(:content="firstPostOfType(type)" :type="type")
20
         
20
         
21
         //- secondRow: 'artists', // This is only ONE post, excerpt on artist
21
         //- secondRow: 'artists', // This is only ONE post, excerpt on artist
22
         section.max
22
         section.max
23
             ul.w-max
23
             ul.w-max
24
-                li.shadow.post(v-for="post in randomPosts.filter(p => p.type == secondRow)")
24
+                li.post(v-for="post in randomPosts.filter(p => p.type == secondRow)")
25
                     card(v-if="post" :content="post" :type="`${post.type}`" :wide="true")
25
                     card(v-if="post" :content="post" :type="`${post.type}`" :wide="true")
26
         
26
         
27
         //- (thirdRow) firstRow.flipped: ['guides', 'objects', 'techniques', 'talks', 'center'], exceprt on guides only
27
         //- (thirdRow) firstRow.flipped: ['guides', 'objects', 'techniques', 'talks', 'center'], exceprt on guides only
28
         section
28
         section
29
             ul.flipped
29
             ul.flipped
30
-                li.shadow.post(v-for="type in thirdRow")
30
+                li.post(v-for="type in thirdRow")
31
                      .random--wrapper(v-for="post in randomPosts.filter(p => p.type == type)")
31
                      .random--wrapper(v-for="post in randomPosts.filter(p => p.type == type)")
32
                         card(:content="post" :type="type")
32
                         card(:content="post" :type="type")
33
 </template>
33
 </template>

Carregando…
Cancelar
Salvar