Skip to content
This repository was archived by the owner on Mar 23, 2019. It is now read-only.

Commit 30f595a

Browse files
committed
Fixed merge Errors
1 parent 12153bc commit 30f595a

File tree

1 file changed

+3
-7
lines changed

1 file changed

+3
-7
lines changed

src/views/Tasks/CreateTask/index.jsx

Lines changed: 3 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -62,11 +62,7 @@ const defaultTask = {
6262
@withStyles(theme => ({
6363
createIcon: {
6464
...theme.mixins.successIcon,
65-
position: 'fixed',
66-
bottom: theme.spacing.double,
67-
right: theme.spacing.unit * 11,
68-
},
69-
toolTip: {
65+
...theme.mixins.fab,
7066
position: 'fixed',
7167
bottom: theme.spacing.double,
7268
right: theme.spacing.unit * 11,
@@ -288,12 +284,12 @@ export default class CreateTask extends Component {
288284
onChange={this.handleTaskChange}
289285
/>
290286
<Tooltip
291-
className={classes.createIcon}
292-
placement="left"
293287
title="Create Task"
294288
>
295289
<Button
290+
requireAuth
296291
variant="fab"
292+
className={classes.createIcon}
297293
onClick={this.handleCreateTask}
298294
ButtonProps={{
299295
disabled: !task || invalid || loading,

0 commit comments

Comments
 (0)