Skip to content

Commit

Permalink
action-card: Fix one more extra border on mobile
Browse files Browse the repository at this point in the history
  • Loading branch information
eliandoran committed Jul 7, 2024
1 parent fae8f47 commit 4f168bc
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions src/lib/components/action-card.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -32,14 +32,10 @@
}
@media (max-width: 919px) {
nav :global(ul li:nth-last-of-type(2)) {
nav :global(ul li:nth-child(2n+1):nth-last-of-type(2)) {
border-bottom: unset;
}
nav :global(ul li:not(:first-of-type):nth-last-of-type(2n)) {
border-bottom: 1px solid var(--action-card-border);
}
nav :global(ul li:nth-child(2n+1):last-of-type) {
grid-column: 1 / 3;
}
Expand Down

0 comments on commit 4f168bc

Please sign in to comment.