File tree Expand file tree Collapse file tree 3 files changed +12
-12
lines changed Expand file tree Collapse file tree 3 files changed +12
-12
lines changed Original file line number Diff line number Diff line change @@ -12,6 +12,8 @@ import Exit from '../images/exit.svg';
12
12
import DropdownArrow from '../images/down-filled-triangle.svg' ;
13
13
import Preferences from '../images/preferences.svg' ;
14
14
import Play from '../images/triangle-arrow-right.svg' ;
15
+ import Code from '../images/code.svg' ;
16
+
15
17
16
18
// HOC that adds the right web accessibility props
17
19
// https://www.scottohara.me/blog/2019/05/22/contextual-images-svgs-and-a11y.html
@@ -74,3 +76,4 @@ export const ExitIcon = withLabel(Exit);
74
76
export const DropdownArrowIcon = withLabel ( DropdownArrow ) ;
75
77
export const PreferencesIcon = withLabel ( Preferences ) ;
76
78
export const PlayIcon = withLabel ( Play ) ;
79
+ export const CodeIcon = withLabel ( Code ) ;
Original file line number Diff line number Diff line change @@ -4,25 +4,25 @@ import { bindActionCreators } from 'redux';
4
4
import { useDispatch } from 'react-redux' ;
5
5
import { prop , remSize } from '../../theme' ;
6
6
import IconButton from './IconButton' ;
7
- import { ExitIcon } from '../../common/icons' ;
7
+ import { CodeIcon } from '../../common/icons' ;
8
8
import * as IDEActions from '../../modules/IDE/actions/ide' ;
9
9
10
10
const background = prop ( 'MobilePanel.default.background' ) ;
11
11
const textColor = prop ( 'primaryTextColor' ) ;
12
12
13
13
const BottomBarContent = styled . h2 `
14
- padding: ${ remSize ( 12 ) } ;
14
+ padding: ${ remSize ( 8 ) } ;
15
15
16
16
svg {
17
17
max-height: ${ remSize ( 32 ) } ;
18
- padding: ${ remSize ( 4 ) }
18
+ /* padding: ${ remSize ( 4 ) } */
19
19
}
20
20
` ;
21
21
22
22
export default ( ) => {
23
23
const { expandConsole } = bindActionCreators ( IDEActions , useDispatch ( ) ) ;
24
24
25
- const actions = [ { icon : ExitIcon , aria : 'Say Something' , action : expandConsole } ] ;
25
+ const actions = [ { icon : CodeIcon , aria : 'Say Something' , action : expandConsole } ] ;
26
26
27
27
return (
28
28
< BottomBarContent >
You can’t perform that action at this time.
0 commit comments