Skip to content

Commit

Permalink
Merge pull request #207 from flanksource/fix/replace-border-border-color
Browse files Browse the repository at this point in the history
fix: replace `border-border-color` with `border-gray-200` temporarily…
  • Loading branch information
moshloop authored Apr 11, 2022
2 parents 86cef77 + 18b6110 commit 472e23b
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions src/components/Incidents/IncidentList/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,10 @@ import { IncidentStatus } from "../incident-status";

export function IncidentList({ list, ...rest }) {
return (
<div className="border border-border-color rounded-md">
<div className="border border-gray-200 rounded-md">
<table className="table-auto w-full" aria-label="table" {...rest}>
<thead className="rounded-md">
<tr className="border-b border-border-color uppercase bg-column-background rounded-t-md items-center">
<tr className="border-b border-gray-200 uppercase bg-column-background rounded-t-md items-center">
<th
className="px-6 py-3 text-gray-500 font-medium text-xs col-span-2 text-left"
colSpan={2}
Expand Down
6 changes: 3 additions & 3 deletions src/index.css
Original file line number Diff line number Diff line change
Expand Up @@ -56,12 +56,12 @@
border-radius: 8px;
-moz-border-radius: 8px;
-webkit-border-radius: 8px;
@apply border-border-color shadow-md;
@apply border-gray-200 shadow-md;
}

.comfortable-table td,
.comfortable-table th {
@apply border-border-color;
@apply border-gray-200;
}

.comfortable-table td {
Expand Down Expand Up @@ -109,7 +109,7 @@

.compact-table td,
.compact-table th {
@apply border-border-color;
@apply border-gray-200;
}

.compact-table th {
Expand Down

0 comments on commit 472e23b

Please sign in to comment.