Added Top Web Models update and scene scraper.

This commit is contained in:
DebaucheryLibrarian
2021-01-15 04:04:32 +01:00
parent 451ffdc48b
commit b8df8e6507
13 changed files with 158 additions and 77 deletions

View File

@@ -1,5 +1,12 @@
<template>
<div class="scroll">
<Expand
v-if="expanded"
:expanded="expanded"
class="expand-light"
@expand="(state) => $emit('expand', state)"
/>
<Expand
v-if="expanded"
:expanded="expanded"
@@ -8,13 +15,6 @@
/>
<div class="scrollable">
<Expand
v-if="expanded"
:expanded="expanded"
class="expand-light"
@expand="(state) => $emit('expand', state)"
/>
<div
v-show="enabled && !expanded"
class="scroll-button scroll-left noselect"
@@ -40,14 +40,14 @@
<Expand
v-if="expanded || (expandable && scrollable)"
:expanded="expanded"
class="expand-dark"
class="expand-light"
@expand="(state) => $emit('expand', state)"
/>
<Expand
v-if="expanded || (expandable && scrollable)"
:expanded="expanded"
class="expand-light"
class="expand-dark"
@expand="(state) => $emit('expand', state)"
/>
</div>
@@ -155,18 +155,6 @@ export default {
}
}
.expand-light {
display: none;
}
.expand-dark {
display: none;
}
.expand-light {
display: block;
}
.scroll-button {
height: 100%;
display: flex;
@@ -222,6 +210,14 @@ export default {
padding: 1rem .5rem 1rem 2rem;
}
.scroll-light .expand-dark {
display: none;
}
.scroll-dark .expand-light {
display: none;
}
@media(max-width: $breakpoint) {
.scroll-button {
display: none;