diff --git a/assets/components/actors/actors.vue b/assets/components/actors/actors.vue index 89db7e14..1b8c3c78 100644 --- a/assets/components/actors/actors.vue +++ b/assets/components/actors/actors.vue @@ -63,10 +63,7 @@ :items-per-page="limit" /> -
+
@@ -34,9 +34,9 @@ > @@ -76,9 +76,6 @@ export default { padding: .5rem 1rem; margin: 0 1rem 0 0; font-size: 0; - overflow-x: scroll; - scroll-behavior: smooth; - scrollbar-width: none; &.expanded { flex-wrap: wrap; @@ -101,10 +98,6 @@ export default { .avatar-link { display: none; } - - &::-webkit-scrollbar { - display: none; - } } .photo-link { @@ -115,6 +108,7 @@ export default { height: 15rem; box-shadow: 0 0 3px var(--darken-weak); object-fit: cover; + background-size: cover; } @media(max-width: $breakpoint3) { diff --git a/assets/components/actors/tile.vue b/assets/components/actors/tile.vue index d4f00d53..e52d5b4e 100644 --- a/assets/components/actors/tile.vue +++ b/assets/components/actors/tile.vue @@ -45,9 +45,10 @@
import { mapState } from 'vuex'; -import EventBus from '../../js/event-bus'; - import Warning from './warning.vue'; import Header from '../header/header.vue'; import Sidebar from '../sidebar/sidebar.vue'; @@ -49,12 +47,6 @@ async function setConsent(consent) { } } -function mounted() { - document.addEventListener('click', () => { - EventBus.$emit('blur'); - }); -} - export default { components: { Header, @@ -72,7 +64,6 @@ export default { theme, }), }, - mounted, methods: { toggleSidebar, setConsent, diff --git a/assets/components/entities/entity.vue b/assets/components/entities/entity.vue index c45c2f38..c1668b9d 100644 --- a/assets/components/entities/entity.vue +++ b/assets/components/entities/entity.vue @@ -113,7 +113,7 @@