Skip to content

Commit

Permalink
Replace up down arrows with left right for cards
Browse files Browse the repository at this point in the history
  • Loading branch information
timmo001 committed Jun 28, 2020
1 parent 0f6f87c commit b805e9e
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions frontend/src/Components/Cards/Overlay.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ import React, { ReactElement, Fragment, useState } from 'react';
import { makeStyles, Theme } from '@material-ui/core/styles';
import Grid from '@material-ui/core/Grid';
import IconButton from '@material-ui/core/IconButton';
import ArrowDownwardsIcon from '@material-ui/icons/ArrowDownward';
import ArrowUpwardIcon from '@material-ui/icons/ArrowUpward';
import ArrowLeftIcon from '@material-ui/icons/KeyboardArrowLeft';
import ArrowRightIcon from '@material-ui/icons/KeyboardArrowRight';
import CopyIcon from '@material-ui/icons/FileCopy';
import DeleteIcon from '@material-ui/icons/Delete';
import EditIcon from '@material-ui/icons/Edit';
Expand Down Expand Up @@ -74,13 +74,13 @@ function Overlay(props: BaseProps): ReactElement {
disabled={props.position === 0}
color="primary"
onClick={props.handleMoveUp}>
<ArrowUpwardIcon fontSize="small" />
<ArrowLeftIcon fontSize="small" />
</IconButton>
<IconButton
disabled={props.position === props.maxPosition}
color="primary"
onClick={props.handleMoveDown}>
<ArrowDownwardsIcon fontSize="small" />
<ArrowRightIcon fontSize="small" />
</IconButton>
{deleteConfirm && (
<ConfirmDialog
Expand Down

0 comments on commit b805e9e

Please sign in to comment.