Skip to content
This repository has been archived by the owner on Aug 20, 2023. It is now read-only.

Commit

Permalink
Fix scroll on intersection
Browse files Browse the repository at this point in the history
  • Loading branch information
francoism90 committed Mar 27, 2022
1 parent 5b8ef0a commit f5e64b9
Show file tree
Hide file tree
Showing 9 changed files with 12 additions and 12 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
"dependencies": {
"@capacitor/core": "^3.4.3",
"@capacitor/status-bar": "^1.0.8",
"@quasar/extras": "^1.13.3",
"@quasar/extras": "^1.13.4",
"@types/qs": "^6.9.7",
"@vueuse/core": "^8.2.0",
"core-js": "^3.21.1",
Expand Down
2 changes: 1 addition & 1 deletion src/components/search/SearchDialog.vue
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
<q-intersection
v-for="(item, index) in state.data"
:key="index"
class="col-12 search-block"
class="col-12 search-placeholder"
>
<search-item :model="item" />
</q-intersection>
Expand Down
2 changes: 1 addition & 1 deletion src/components/tags/TagDialog.vue
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
<q-intersection
v-for="(item, index) in state.data"
:key="index"
class="col-xs-6 col-sm-6 col-md-4 tag-block"
class="col-xs-6 col-sm-6 col-md-4 tag-placeholder"
>
<tag-item :tag="item" />
</q-intersection>
Expand Down
2 changes: 1 addition & 1 deletion src/components/video/VideoSimilar.vue
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
<q-intersection
v-for="(item, index) in state.data"
:key="index"
class="col-xs-12 col-sm-6 video-item"
class="col-xs-12 col-sm-6 video-placeholder"
>
<video-item :item="item" />
</q-intersection>
Expand Down
2 changes: 1 addition & 1 deletion src/css/partials/search.scss
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
}
}

.search-block {
.search-placeholder {
min-height: 140px;
min-width: 200px;
}
Expand Down
2 changes: 1 addition & 1 deletion src/css/partials/tag.scss
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
}
}

.tag-block {
.tag-placeholder {
min-height: 120px;
min-width: 100px;
}
Expand Down
2 changes: 1 addition & 1 deletion src/css/partials/video.scss
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
.video-block {
.video-placeholder {
min-height: 400px;
min-width: 200px;
}
Expand Down
2 changes: 1 addition & 1 deletion src/pages/VideoOverview.vue
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
<q-intersection
v-for="(item, index) in state.data"
:key="index"
class="col-xs-12 col-sm-6 video-block"
class="col-xs-12 col-sm-6 video-placeholder"
>
<video-item :item="item" />
</q-intersection>
Expand Down
8 changes: 4 additions & 4 deletions yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -1380,10 +1380,10 @@
core-js "^3.6.5"
core-js-compat "^3.6.5"

"@quasar/extras@^1.13.3":
version "1.13.3"
resolved "https://registry.yarnpkg.com/@quasar/extras/-/extras-1.13.3.tgz#680fcb5dd89d782cc66844d6c3d0ebd275484a6b"
integrity sha512-8Tx+iUtg0e+UeSPu2+iJA4joIuIaMGPpV65gNv1/7kINqpAEKi6sXhu/Ahyy/IhZ5o4g1DU9ZGp8CpJKBNwdFA==
"@quasar/extras@^1.13.4":
version "1.13.4"
resolved "https://registry.yarnpkg.com/@quasar/extras/-/extras-1.13.4.tgz#a06d3e14844ea1271ef69ed237db50d1c79312ea"
integrity sha512-cM1Vc2ju5p9hShssyTgy0jWLvit0diUTvH1mTcuzEo6omDB/8GzIbt7N4aer8m4tSTyfjP6/ejyu4N17mVoeMQ==

"@quasar/[email protected]":
version "1.1.5"
Expand Down

0 comments on commit f5e64b9

Please sign in to comment.