File tree Expand file tree Collapse file tree 3 files changed +5
-6
lines changed
packages/app/src/app/pages/common/Modals/ShareModal Expand file tree Collapse file tree 3 files changed +5
-6
lines changed Original file line number Diff line number Diff line change 11import React , { Component , Fragment } from 'react' ;
22import Down from 'react-icons/lib/fa/angle-down' ;
3- import Up from 'react-icons/lib/fa/angle-up ' ;
3+ import Right from 'react-icons/lib/fa/angle-right ' ;
44import { Spring , animated } from 'react-spring' ;
55import { Title } from './elements' ;
66
@@ -15,7 +15,7 @@ export default class extends Component {
1515 return (
1616 < Fragment >
1717 < Title onClick = { ( ) => this . toggleShow ( ) } >
18- { open ? < Up /> : < Down /> }
18+ { open ? < Down /> : < Right /> }
1919 { title }
2020 </ Title >
2121 < Spring
Original file line number Diff line number Diff line change @@ -59,7 +59,7 @@ export const Title = styled.h4`
5959 font-size: 18px;
6060 padding-bottom: 20px;
6161 margin: 0;
62- padding-top: 20px ;
62+ padding-top: 5px ;
6363 cursor: pointer;
6464 display: flex;
6565 align-items: center;
@@ -80,7 +80,7 @@ export const SideTitle = styled.span`
8080 font-weight: bold;
8181 font-size: 20px;
8282 margin-top: 20px;
83- margin-bottom: 0px ;
83+ margin-bottom: 15px ;
8484 color: #e5e5e5;
8585 display: block;
8686` ;
Original file line number Diff line number Diff line change @@ -37,10 +37,9 @@ class ShareView extends React.Component {
3737 isCurrentModuleView : false ,
3838 fontSize : 14 ,
3939 initialPath : '' ,
40- useCodeMirror : true ,
40+ useCodeMirror : false ,
4141 enableEslint : false ,
4242 expandDevTools : false ,
43- links : true ,
4443 } ;
4544
4645 componentDidMount ( ) {
You can’t perform that action at this time.
0 commit comments