Files
monitor-im-flur/src/components/Datetime/style.module.css
2025-08-29 11:57:14 +02:00

30 lines
403 B
CSS

.container {
display: flex;
flex-direction: row;
align-items: center;
padding-right: 25px;
}
img {
height: 100px;
scale: 130%;
object-fit: cover;
}
.textContainer {
font-size: 16pt;
font-weight: bold;
display: flex;
flex-direction: column;
}
.divider {
animation: blink 3s step-end infinite;
}
@keyframes blink {
50% {
opacity: 0;
}
}