File tree 2 files changed +42
-5
lines changed
src/components/HomeGuilds
2 files changed +42
-5
lines changed Original file line number Diff line number Diff line change 20
20
</v-layout >
21
21
<v-carousel
22
22
light
23
- hide-delimiters >
23
+ hide-delimiters
24
+ class =" carousel" >
24
25
<v-carousel-item
25
26
v-for =" (guild, index) in allGuilds"
26
27
:key =" index" >
40
41
<v-flex
41
42
v-if =" index + 1 < allGuilds.length"
42
43
sm12
43
- md4 >
44
+ md4
45
+ class =" search_and_share" >
44
46
<home-guilds-card
45
47
:title =" allGuilds[index + 1].name"
46
48
:description =" allGuilds[index + 1].description"
51
53
<v-flex
52
54
v-if =" index + 2 < allGuilds.length"
53
55
sm12
54
- md4 >
56
+ md4
57
+ class =" search_and_share" >
55
58
<home-guilds-card
56
59
:title =" allGuilds[index + 2].name"
57
60
:description =" allGuilds[index + 2].description"
@@ -78,8 +81,6 @@ import { mapGetters } from 'vuex'
78
81
data () {
79
82
80
83
return {
81
-
82
-
83
84
}
84
85
},
85
86
computed: {
@@ -89,6 +90,11 @@ import { mapGetters } from 'vuex'
89
90
</script >
90
91
91
92
<style lang="stylus" scoped>
93
+
94
+ @media handheld , only screen and (max-width : 768px )
95
+ .search_and_share
96
+ display :none
97
+
92
98
.home-guilds
93
99
& __title-row
94
100
padding-left 20px
@@ -109,4 +115,7 @@ import { mapGetters } from 'vuex'
109
115
& __title
110
116
font-size 40px
111
117
118
+ .carousel
119
+ box-shadow none
120
+
112
121
</style >
You can’t perform that action at this time.
0 commit comments