apple2js/js/components/debugger/css/FileViewer.module.scss

29 lines
504 B
SCSS
Raw Normal View History

2022-07-23 19:00:38 +00:00
.fileViewer {
width: 60em;
2022-07-23 22:51:12 +00:00
max-height: 60vh;
overflow-y: auto;
display: flex;
flex-direction: column;
align-items: center;
}
.textViewer {
background: white;
font-family: monospace;
width: 57em;
2022-07-23 19:00:38 +00:00
padding: 1em;
height: 60vh;
2022-07-23 22:51:12 +00:00
line-height: 1em;
2022-07-23 19:00:38 +00:00
overflow-y: auto;
border: 2px inset #f0edd0;
white-space: pre-wrap;
}
2022-07-23 22:51:12 +00:00
.hiresPreview {
border: 2px inset #f0edd0;
width: 560px;
height: 384px;
min-width: 560px;
min-height: 384px;
}