Skip to content

Commit 52abce9

Browse files
committed
Merge branch 'new-website' of github.com:OSWeekends/osweekends.github.io into new-website
2 parents 2c2dc8a + f7043d5 commit 52abce9

File tree

2 files changed

+42
-5
lines changed

2 files changed

+42
-5
lines changed

package-lock.json

Lines changed: 28 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/components/HomeGuilds/Index.vue

Lines changed: 14 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,8 @@
2020
</v-layout>
2121
<v-carousel
2222
light
23-
hide-delimiters>
23+
hide-delimiters
24+
class="carousel">
2425
<v-carousel-item
2526
v-for="(guild, index) in allGuilds"
2627
:key="index">
@@ -40,7 +41,8 @@
4041
<v-flex
4142
v-if="index + 1 < allGuilds.length"
4243
sm12
43-
md4>
44+
md4
45+
class="search_and_share">
4446
<home-guilds-card
4547
:title="allGuilds[index + 1].name"
4648
:description="allGuilds[index + 1].description"
@@ -51,7 +53,8 @@
5153
<v-flex
5254
v-if="index + 2 < allGuilds.length"
5355
sm12
54-
md4>
56+
md4
57+
class="search_and_share">
5558
<home-guilds-card
5659
:title="allGuilds[index + 2].name"
5760
:description="allGuilds[index + 2].description"
@@ -78,8 +81,6 @@ import { mapGetters } from 'vuex'
7881
data () {
7982
8083
return {
81-
82-
8384
}
8485
},
8586
computed: {
@@ -89,6 +90,11 @@ import { mapGetters } from 'vuex'
8990
</script>
9091

9192
<style lang="stylus" scoped>
93+
94+
@media handheld, only screen and (max-width: 768px)
95+
.search_and_share
96+
display:none
97+
9298
.home-guilds
9399
&__title-row
94100
padding-left 20px
@@ -109,4 +115,7 @@ import { mapGetters } from 'vuex'
109115
&__title
110116
font-size 40px
111117
118+
.carousel
119+
box-shadow none
120+
112121
</style>

0 commit comments

Comments
 (0)