Skip to content

Commit

Permalink
Fix chip spacing.
Browse files Browse the repository at this point in the history
  • Loading branch information
Process-ing committed Jul 15, 2023
1 parent b312a9c commit 692d8a1
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/components/Company/Offers/Manage/CompanyOffersTitle.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,18 +2,18 @@ import React, { useEffect, useState } from "react";
import PropTypes from "prop-types";
import { Chip, makeStyles } from "@material-ui/core";

const useStyles = makeStyles(() => ({
const useStyles = makeStyles((theme) => ({
hiddenChip: {
backgroundColor: "#90A4AE",
marginRight: "5px",
marginRight: theme.spacing(.5),
},
blockedChip: {
backgroundColor: "#DC4338",
marginRight: "5px",
marginRight: theme.spacing(.5),
},
archivedChip: {
backgroundColor: "#56A8D6",
marginRight: "5px",
marginRight: theme.spacing(.5),
},
chips: {
position: "absolute",
Expand Down

0 comments on commit 692d8a1

Please sign in to comment.