Spaces:
Configuration error
Configuration error
File size: 687 Bytes
b700c24 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 | .fontmap-v2-container {
width: 100vw;
height: 100vh;
position: relative;
overflow: hidden;
}
.fontmap-v2-svg {
width: 100%;
height: 100%;
display: block;
}
.loading,
.error {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
font-size: 18px;
font-family: system-ui, -apple-system, sans-serif;
}
.error {
color: #e74c3c;
}
.info {
position: fixed;
top: 20px;
left: 20px;
background: rgba(0, 0, 0, 0.8);
color: white;
padding: 10px 15px;
border-radius: 6px;
font-family: 'Courier New', monospace;
font-size: 12px;
z-index: 1000;
}
.info div {
margin: 2px 0;
} |