Hey guys got this working code for a marquee banner but its only working on mobile effectively, its cutting off halfway thru the animation on 4k monitor, is there a fix using this operator @media screen and (min-width: 750px) {
thanks for any help ![]()
using Dawn 4.0
code:
.marquee-container {
overflow: hidden;
}
.marquee {
margin: 0;
display: flex;
background:red;
}
.marquee-words {
color:white;
white-space: nowrap;
animation: marquee-keywords 5s linear infinite;
font-size: 20px;
letter-spacing: 0.2em;
}
@keyframes marquee-keywords {
100% {
transform: translateX(100%);
}
0% {
transform: translateX(-100%);
}
}