finished comment integration, it should be working now

This commit is contained in:
2026-03-17 13:47:55 +01:00
parent 76eb96666b
commit f58248a8e7
10 changed files with 689 additions and 29 deletions

View File

@@ -46,13 +46,13 @@
width: max-content;
will-change: transform;
animation: scrolling 20s linear infinite;
gap: 100px;
}
.pexpo-core-comment-group {
display: flex;
gap: 100px;
width: max-content;
}
.pexpo-core-comment {
@@ -149,6 +149,28 @@
}
}
.pexpo-core-com-consent {
display: flex;
flex-direction: column;
gap: 10px;
justify-content: left;
font-size: 1.3rem;
& div {
display: flex;
gap: 5px;
& input[type="checkbox"] {
width: auto;
transform: scale(1.2);
&:focus {
outline: none;
}
}
}
}
.pexpo-core-no-comments {
text-align: center;
font-size: 1.2rem;
@@ -177,6 +199,6 @@
@keyframes scrolling {
to {
transform: translate3d(-50%,0,0);
transform: translate3d(-50%, 0, 0);
}
}