did some touch ups, now the maquee should be actually working

This commit is contained in:
2026-03-17 21:40:11 +01:00
parent f58248a8e7
commit 2b91c368ee
8 changed files with 368 additions and 28 deletions

View File

@@ -45,13 +45,14 @@
display: flex;
width: max-content;
will-change: transform;
animation: scrolling 20s linear infinite;
animation: scrolling 5s linear infinite;
}
.pexpo-core-comment-group {
display: flex;
gap: 100px;
padding-right: 100px;
width: max-content;
}
@@ -110,7 +111,7 @@
display: flex;
flex-direction: column;
width: 100%;
max-width: 500px;
max-width: 600px;
box-shadow: #00000020 0px 5px 20px 0;
border-radius: 15px;
padding: 20px;
@@ -199,6 +200,6 @@
@keyframes scrolling {
to {
transform: translate3d(-50%, 0, 0);
transform: translate3d(calc(-100% / var(--group-count)), 0, 0);
}
}