Skip to content

Commit b91d9f1

Browse files
committed
update issue and label component headings
1 parent f26aa26 commit b91d9f1

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

src/components/Issues.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,8 @@ const Issues = () => {
2424
return (
2525
<div className="issue-container h-100 d-flex flex-column">
2626
<div className="issue-header">
27-
<div className="filter-title text-center">
28-
<h1 className="filter-title text-center">Issues</h1>
27+
<div className="filter-title text-center bg-dark">
28+
<h1 className="text-white h2">Issues</h1>
2929
<span>{selectedLabels.length ? issueListFlat?.length : 0} available issues</span>
3030
</div>
3131
</div>

src/components/Labels.js

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,9 @@ const Labels = () => {
1414
}
1515
return (
1616
<div className="label-container h-100 d-flex flex-column">
17-
<h1 className="filter-title">Labels</h1>
17+
<div className="filter-title text-center bg-dark">
18+
<h1 className="text-white h2">Labels</h1>
19+
</div>
1820
<div className="overflow-y-scroll">
1921
{labelslist ? (
2022
<ul className="grid xxl:grid-cols-5 xl:grid-cols-4 lg:grid-cols-3 md:grid-cols-2 sm:grid-cols-1 gap-2 p-2">

0 commit comments

Comments
 (0)