fix(ui): fix group bg

This commit is contained in:
0ko 2025-08-05 12:55:58 +05:00 committed by iamyaash
commit 032c0f9391
2 changed files with 4 additions and 1 deletions

View file

@ -17,7 +17,7 @@
<!-- Start a new commit group -->
<article class="commit-group">
<h4>{{ $commitTime.Format "Mon, 02 Jan 2006" }}</h4>
<div class="tw-border tw-border-[--color-secondary] tw-rounded-md tw-divide-y tw-divide-[--color-secondary]">
<div class="commit-group-commits tw-border tw-border-[--color-secondary] tw-rounded-md tw-divide-y tw-divide-[--color-secondary]">
{{end}}
<div class="commit-timeline">

View file

@ -2771,6 +2771,9 @@ tbody.commit-list {
.commit-group {
margin-bottom: 1rem;
}
.commit-group-commits {
background: var(--color-box-body);
}