mirror of
https://github.com/makeplane/plane
synced 2025-08-07 19:59:33 +00:00
style: changed the workspace cards height (#558)
This commit is contained in:
@@ -36,7 +36,7 @@ export const IssuesList: React.FC<Props> = ({ issues, type }) => {
|
||||
<div>
|
||||
<h3 className="mb-2 font-semibold capitalize">{type} Issues</h3>
|
||||
{issues ? (
|
||||
<div className="rounded-[10px] border bg-white p-4 text-sm">
|
||||
<div className="rounded-[10px] border bg-white p-4 text-sm h-[calc(100%-2.25rem)]">
|
||||
<div
|
||||
className={`mb-2 grid grid-cols-4 gap-2 rounded-lg px-3 py-2 font-medium ${
|
||||
type === "overdue" ? "bg-red-100" : "bg-gray-100"
|
||||
|
||||
@@ -80,7 +80,7 @@ export const IssuesPieChart: React.FC<Props> = ({ groupedIssues }) => {
|
||||
<div>
|
||||
<h3 className="mb-2 font-semibold">Issues by States</h3>
|
||||
<div className="rounded-[10px] border bg-white p-4">
|
||||
<ResponsiveContainer width="100%" height={250}>
|
||||
<ResponsiveContainer width="100%" height={320}>
|
||||
<PieChart>
|
||||
<Pie
|
||||
data={groupedIssues}
|
||||
|
||||
Reference in New Issue
Block a user