frontend / src /components /files /TxtViewer /TxtViewer.module.css
Haron-2
some bug fixes
5a19572
Raw
History Blame Contribute Delete
380 Bytes
.textContainer {
width: 100%;
height: 100%;
overflow: auto;
color: var(--text-color-primary);
font-family: var(--font-family-monospace);
font-size: 16px;
line-height: 1.6;
}
.textContainer::-webkit-scrollbar-track {
display: none;
width: 0;
}
.textContainer::-webkit-scrollbar {
display: none;
width: 0;
background: transparent;
}