pages235/src/react/TouchInteractionHint.module.css
2025-03-06 20:12:05 +03:00

19 lines
303 B
CSS

.hint_container {
position: fixed;
top: 20%;
left: 0;
right: 0;
margin: 0 auto;
width: fit-content;
display: flex;
align-items: center;
gap: 8px;
pointer-events: none;
z-index: 1000;
text-shadow: 1px 1px 8px rgba(0, 0, 0, 1);
}
.hint_text {
color: white;
font-size: 10px;
}