Added footer with dmca and discord links.
This commit is contained in:
@@ -58,14 +58,17 @@ const { actor } = pageProps;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
flex-grow: 1;
|
||||
overflow: hidden;
|
||||
position: relative;
|
||||
}
|
||||
|
||||
.actor-header {
|
||||
width: 100%;
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
align-items: center;
|
||||
position: relative;
|
||||
position: sticky;
|
||||
top: 0;
|
||||
z-index: 1;
|
||||
color: var(--highlight-strong-30);
|
||||
background: var(--grey-dark-40);
|
||||
}
|
||||
@@ -94,7 +97,7 @@ const { actor } = pageProps;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
flex-grow: 1;
|
||||
overflow-y: auto;
|
||||
/* overflow-y: auto; */
|
||||
}
|
||||
|
||||
.bookmarks {
|
||||
|
||||
@@ -133,7 +133,7 @@ onMounted(() => {
|
||||
categories.value.scrollLeft += event.deltaY;
|
||||
});
|
||||
|
||||
content.value.addEventListener('scroll', () => calculateActiveCategory());
|
||||
document.querySelector('#content').addEventListener('scroll', () => calculateActiveCategory());
|
||||
|
||||
window.addEventListener('popstate', () => {
|
||||
if (window.location.hash) {
|
||||
@@ -152,12 +152,10 @@ onMounted(() => {
|
||||
.page {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
.content {
|
||||
flex-grow: 1;
|
||||
overflow-y: auto;
|
||||
}
|
||||
|
||||
.categories {
|
||||
@@ -165,6 +163,9 @@ onMounted(() => {
|
||||
gap: .25rem;
|
||||
flex-shrink: 0;
|
||||
padding: .5rem 1rem;
|
||||
position: sticky;
|
||||
top: 0;
|
||||
z-index: 1;
|
||||
background: var(--grey-dark-40);
|
||||
overflow-x: auto;
|
||||
scrollbar-width: none;
|
||||
|
||||
Reference in New Issue
Block a user