File tree Expand file tree Collapse file tree 3 files changed +6
-7
lines changed Expand file tree Collapse file tree 3 files changed +6
-7
lines changed Original file line number Diff line number Diff line change
1
+ .description {
2
+ margin : 0 ;
3
+ }
Original file line number Diff line number Diff line change @@ -9,6 +9,8 @@ import * as selectors from './selectors';
9
9
import State from './state' ;
10
10
import { Channel } from './types' ;
11
11
12
+ import styles from './ChannelMenu.module.css' ;
13
+
12
14
interface ChannelMenuProps {
13
15
close : ( ) => void ;
14
16
}
@@ -62,7 +64,7 @@ const ChannelMenu: React.SFC<ChannelMenuProps> = props => {
62
64
} ;
63
65
64
66
const Desc : React . SFC < { } > = ( { children } ) => (
65
- < p className = "channel-menu__description" > { children } </ p >
67
+ < p className = { styles . description } > { children } </ p >
66
68
) ;
67
69
68
70
export default ChannelMenu ;
Original file line number Diff line number Diff line change @@ -581,12 +581,6 @@ $header-transition: 0.2s ease-in-out;
581
581
}
582
582
}
583
583
584
- .channel-menu {
585
- & __description {
586
- margin : 0 ;
587
- }
588
- }
589
-
590
584
.config-element {
591
585
display : flex ;
592
586
align-items : center ;
You can’t perform that action at this time.
0 commit comments