File tree Expand file tree Collapse file tree 3 files changed +8
-10
lines changed
Expand file tree Collapse file tree 3 files changed +8
-10
lines changed Original file line number Diff line number Diff line change @@ -5,10 +5,11 @@ import {ConsoleEntry as ConsoleEntryRecord} from '../records';
55
66import ConsoleExpression from './ConsoleExpression' ;
77import ConsoleOutput from './ConsoleOutput' ;
8+ import styles from './ConsoleEntry.module.css' ;
89
910export default function ConsoleEntry ( { entry, isActive} ) {
1011 return (
11- < div className = "console__entry" >
12+ < div className = { styles . entry } >
1213 < ConsoleExpression entry = { entry } isActive = { isActive } />
1314 < ConsoleOutput entry = { entry } isActive = { isActive } />
1415 </ div >
Original file line number Diff line number Diff line change 1+ .entry {
2+ flex : none;
3+ margin-top : 0.5em ;
4+ padding-bottom : 0.5em ;
5+ border-bottom : 1px solid var (--color-low-contrast-gray );
6+ }
Original file line number Diff line number Diff line change @@ -610,15 +610,6 @@ body {
610610 animation : 0.2s ease-in 0.1s both fadeIn;
611611}
612612
613- /** @define console */
614-
615- .console__entry {
616- flex : none;
617- margin-top : 0.5em ;
618- padding-bottom : 0.5em ;
619- border-bottom : 1px solid var (--color-low-contrast-gray );
620- }
621-
622613/** @define preview */
623614
624615.preview {
You can’t perform that action at this time.
0 commit comments