File tree 3 files changed +8
-10
lines changed
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';
5
5
6
6
import ConsoleExpression from './ConsoleExpression' ;
7
7
import ConsoleOutput from './ConsoleOutput' ;
8
+ import styles from './ConsoleEntry.module.css' ;
8
9
9
10
export default function ConsoleEntry ( { entry, isActive} ) {
10
11
return (
11
- < div className = "console__entry" >
12
+ < div className = { styles . entry } >
12
13
< ConsoleExpression entry = { entry } isActive = { isActive } />
13
14
< ConsoleOutput entry = { entry } isActive = { isActive } />
14
15
</ 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 @@ -618,15 +618,6 @@ body {
618
618
animation : 0.2s ease-in 0.1s both fadeIn;
619
619
}
620
620
621
- /** @define console */
622
-
623
- .console__entry {
624
- flex : none;
625
- margin-top : 0.5em ;
626
- padding-bottom : 0.5em ;
627
- border-bottom : 1px solid var (--color-low-contrast-gray );
628
- }
629
-
630
621
/** @define preview */
631
622
632
623
.preview {
You can’t perform that action at this time.
0 commit comments