Skip to content

Commit 74fa776

Browse files
committed
Style tweaks
1 parent 75d5cc9 commit 74fa776

File tree

3 files changed

+5
-6
lines changed

3 files changed

+5
-6
lines changed

packages/app/src/app/pages/common/Modals/ShareModal/Title.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import React, { Component, Fragment } from 'react';
22
import 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';
44
import { Spring, animated } from 'react-spring';
55
import { 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

packages/app/src/app/pages/common/Modals/ShareModal/elements.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff 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
`;

packages/app/src/app/pages/common/Modals/ShareModal/index.js

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff 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() {

0 commit comments

Comments
 (0)