chore: Move to prettier standard double quotes (#1309)

This commit is contained in:
Tom Moor
2020-06-20 13:59:15 -07:00
committed by GitHub
parent 2a3b9e2104
commit f43deb7940
444 changed files with 5988 additions and 5977 deletions

View File

@ -1,16 +1,16 @@
// @flow
import * as React from 'react';
import { observer } from 'mobx-react';
import styled, { createGlobalStyle } from 'styled-components';
import breakpoint from 'styled-components-breakpoint';
import ReactModal from 'react-modal';
import { transparentize } from 'polished';
import { CloseIcon, BackIcon } from 'outline-icons';
import NudeButton from 'components/NudeButton';
import { fadeAndScaleIn } from 'shared/styles/animations';
import Flex from 'shared/components/Flex';
import * as React from "react";
import { observer } from "mobx-react";
import styled, { createGlobalStyle } from "styled-components";
import breakpoint from "styled-components-breakpoint";
import ReactModal from "react-modal";
import { transparentize } from "polished";
import { CloseIcon, BackIcon } from "outline-icons";
import NudeButton from "components/NudeButton";
import { fadeAndScaleIn } from "shared/styles/animations";
import Flex from "shared/components/Flex";
ReactModal.setAppElement('#root');
ReactModal.setAppElement("#root");
type Props = {
children?: React.Node,
@ -26,7 +26,7 @@ const GlobalStyles = createGlobalStyle`
z-index: 100;
}
${breakpoint('tablet')`
${breakpoint("tablet")`
.ReactModalPortal + .ReactModalPortal {
.ReactModal__Overlay {
margin-left: 12px;
@ -57,7 +57,7 @@ const GlobalStyles = createGlobalStyle`
const Modal = ({
children,
isOpen,
title = 'Untitled',
title = "Untitled",
onRequestClose,
...rest
}: Props) => {
@ -114,7 +114,7 @@ const StyledModal = styled(ReactModal)`
padding: 8vh 2rem 2rem;
outline: none;
${breakpoint('tablet')`
${breakpoint("tablet")`
padding-top: 13vh;
`};
`;
@ -141,7 +141,7 @@ const Close = styled(NudeButton)`
opacity: 1;
}
${breakpoint('tablet')`
${breakpoint("tablet")`
display: none;
`};
`;
@ -161,7 +161,7 @@ const Back = styled(NudeButton)`
opacity: 1;
}
${breakpoint('tablet')`
${breakpoint("tablet")`
display: flex;
`};
`;