Skip to content

Commit

Permalink
fix: revert styles
Browse files Browse the repository at this point in the history
  • Loading branch information
florianbepunkt committed Aug 24, 2023
1 parent 63a728f commit 61cecc7
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/items/styles.ts
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
import type { CSSProperties } from "react";

export const overridableStyles: CSSProperties = {
fontSize: 14,
fontSize: 12,
color: "white",
cursor: "pointer",
background: "var(--mui-palette-primary-600)",
borderColor: "var(--mui-palette-primary-900)",
background: "#2196f3",
borderColor: "#1a6fb3",
borderStyle: "solid",
borderTopWidth: "1px",
borderBottomWidth: "1px",
Expand All @@ -15,8 +15,8 @@ export const overridableStyles: CSSProperties = {
};

export const selectedStyle: CSSProperties = {
background: "var(--mui-palette-secondary-main)",
borderColor: "var(--mui-palette-secondary-dark)",
background: "#ffc107",
borderColor: "#ff9800",
zIndex: 82,
};

Expand Down

0 comments on commit 61cecc7

Please sign in to comment.