apple2js/js/components/debugger/css/Debugger.module.scss
Will Scullin 1e79d9d59d
Prettier (#203)
* Enabled prettier

* Update lint, fix issues

* Restore some array formatting
2023-11-24 06:45:55 -08:00

55 lines
698 B
SCSS

.inset {
margin: 5px 10px 0;
display: flex;
flex-direction: column;
width: auto;
}
.heading {
font-weight: bold;
font-size: 18px;
margin: 5px 0;
}
.subHeading {
font-weight: bold;
font-size: 12px;
}
.row {
display: flex;
flex-direction: row;
}
.column {
display: flex;
flex-direction: column;
}
.debugger {
font-size: 12px;
width: 590px;
}
.debugger pre {
font-size: 9px;
background: white;
color: black;
padding: 3px;
margin: 2px;
border: 1px inset;
}
.debugger button,
.debugger input {
font-size: 12px;
}
.debugger input[type='text'] {
border: 1px inset;
}
.debugger hr {
color: #c4c1a0;
}