Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: Bucket ui card alignment issue #1093

Closed
Changes from all commits
Commits
File filter

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
fix: bucket ui card alignment issue
  • Loading branch information
Afrin127329 committed May 20, 2024
commit 2b7673c4e119532787a2d54668b53f35bf7bd4ad
2 changes: 1 addition & 1 deletion src/lib/components/cardContainer.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@

<ul
class="grid-box common-section u-margin-block-start-32"
style={`--grid-gap:1.5rem; --grid-item-size:${total > 3 ? '22rem' : '25rem'};`}
style={`--grid-gap: ${total > 3 ? '1.5rem' : '2.5rem'}; --grid-item-size:${total > 3 ? '22rem' : '25rem'};`}
data-private>
<slot />

Expand Down
Loading