16 lines
450 B
CSS
16 lines
450 B
CSS
.ascii-wrapper {
|
|
width: 100%;
|
|
overflow-x: auto;
|
|
-webkit-overflow-scrolling: touch;
|
|
text-align: center; /* centrerar inline-block-barnet */
|
|
padding: 1rem 0;
|
|
}
|
|
|
|
.ascii-wrapper pre {
|
|
display: inline-block; /* gör så att max-width fungerar */
|
|
max-width: 100%;
|
|
font-size: clamp(0.01rem, 1.2vw + 0.01rem, 1rem); /* skalar mjukt från små till stora skärmar */
|
|
line-height: 1.2;
|
|
white-space: pre;
|
|
margin: 0;
|
|
} |