mirror of
https://github.com/alkimake/paperclip.git
synced 2026-06-18 03:30:39 +09:00
fix: add sm:pl-7 to ensure child indentation is visible on desktop
The base IssueRow has sm:pl-1 which overrides pl-6 at sm+ breakpoints. Adding sm:pl-7 ensures the indent is visible at all screen sizes. Co-Authored-By: Paperclip <noreply@paperclip.ing>
This commit is contained in:
parent
8cdb65febb
commit
11643941e6
1 changed files with 1 additions and 1 deletions
|
|
@ -696,7 +696,7 @@ export function IssuesList({
|
||||||
<IssueRow
|
<IssueRow
|
||||||
issue={issue}
|
issue={issue}
|
||||||
issueLinkState={issueLinkState}
|
issueLinkState={issueLinkState}
|
||||||
className={isChild ? "pl-6" : undefined}
|
className={isChild ? "pl-6 sm:pl-7" : undefined}
|
||||||
mobileLeading={
|
mobileLeading={
|
||||||
hasChildren ? (
|
hasChildren ? (
|
||||||
<button type="button" onClick={toggleCollapse}>
|
<button type="button" onClick={toggleCollapse}>
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue