Skip to content

Fix/checkbox #48

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 3 commits into from
Nov 2, 2019
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
cleanup styles
  • Loading branch information
ShMcK committed Nov 2, 2019
commit c855ecaa83d1cc7a238271780e7eb67309b4b5b5
8 changes: 0 additions & 8 deletions resources/icons/icon.svg

This file was deleted.

1 change: 0 additions & 1 deletion web-app/.storybook/config.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
import '@alifd/next/dist/next.css'
import {configure, addParameters} from '@storybook/react'
import '../src/styles/index.css'

Expand Down
6 changes: 1 addition & 5 deletions web-app/src/containers/Overview/OverviewPage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -37,10 +37,6 @@ const styles = {
backgroundColor: 'black',
width: '100%',
},
startButton: {
backgroundColor: 'gold',
fontWeight: 'bold' as 'bold',
},
}

interface Props {
Expand Down Expand Up @@ -77,7 +73,7 @@ const Summary = ({ title, description, levels, onNext }: Props) => (

<div style={styles.options}>
{/* TODO: Add back button */}
<Button style={styles.startButton} onClick={() => onNext()}>
<Button type="primary" onClick={() => onNext()}>
Start
</Button>
</div>
Expand Down
7 changes: 5 additions & 2 deletions web-app/src/styles/index.css
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
@import '~@alifd/next/dist/next.css';
@import '~@alifd/theme-4/dist/next.css';

body {
margin: 0;
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans',
Expand All @@ -11,5 +14,5 @@ code {
}

p {
margin: 0
}
margin: 0;
}