12 lines
171 B
CSS
12 lines
171 B
CSS
|
|
:root {
|
||
|
|
--text-color-primary: white;
|
||
|
|
}
|
||
|
|
|
||
|
|
.DicomHtmlViewport {
|
||
|
|
padding: 20px;
|
||
|
|
overflow-y: scroll;
|
||
|
|
width: 100%;
|
||
|
|
height: 100%;
|
||
|
|
color: var(--text-color-primary);
|
||
|
|
}
|