chore: more import fixes

This commit is contained in:
Kyle Gill
2019-05-18 14:56:07 -06:00
parent 867ed0c998
commit b4d43aaa66
2 changed files with 5 additions and 10 deletions

View File

@@ -13,15 +13,9 @@ import { OnlineContext } from "components/context/online"
import { SIZES } from "styles/constants" import { SIZES } from "styles/constants"
import Seek from "../../Seek" import Seek from "components/Seek"
import Icon from "../../Icon" import Icon from "components/Icon"
const Main = styled.main`
height: 100%;
display: flex;
flex-direction: column;
flex-grow: 1;
`
const EntryHeading = styled.div` const EntryHeading = styled.div`
display: flex; display: flex;
flex-direction: row; flex-direction: row;
@@ -53,6 +47,7 @@ const OfflineNotice = styled.div`
color: ${props => props.theme.colors.secondary}; color: ${props => props.theme.colors.secondary};
border: 1px solid; border: 1px solid;
border-color: ${props => props.theme.colors.tertiary}; border-color: ${props => props.theme.colors.tertiary};
font-size: ${SIZES.tiny};
border-radius: 3px; border-radius: 3px;
` `
const JournalEntryArea = styled.textarea` const JournalEntryArea = styled.textarea`

View File

@@ -7,8 +7,8 @@ import { withTheme } from "emotion-theming"
import { SIZES } from "styles/constants" import { SIZES } from "styles/constants"
import { Button, P } from "components/elements" import { Button, P } from "components/elements"
import { todayUrl } from "utils/date" import { todayUrl } from "utils/date"
import Icon from "../../Icon" import Icon from "component/Icon"
import Logo from "../../Logo" import Logo from "component/Logo"
const StartGrid = styled.div` const StartGrid = styled.div`
margin-top: 30px; margin-top: 30px;