Skip to content
This repository has been archived by the owner on Jun 10, 2024. It is now read-only.

Commit

Permalink
Merge pull request #274 from deriv-com/fix/fix-card-padding
Browse files Browse the repository at this point in the history
  • Loading branch information
mohsen-deriv authored Dec 20, 2023
2 parents e5ba8f4 + 4e861e1 commit 98b115d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import { cva } from 'class-variance-authority';
/**
* * Important: The gap is currently set at 16px. If additional gap variants are introduced, make sure to update this value accordingly.
*/
export const cardClass = cva('gap-gap-lg pr-general-md', {
export const cardClass = cva('', {
variants: {
cols: {
two: '',
Expand Down
2 changes: 1 addition & 1 deletion libs/components/src/lib/cards-container/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ export const CardsContainer = <T extends CardVariantType>({
Array.from({ length: 3 }, (_, index) => (
<div
key={index}
className={qtJoin('flex gap-gap-lg pr-general-md', sliderClass)}
className={qtJoin('flex gap-gap-lg', sliderClass)}
data-testid="infinite-carousel"
>
{cards.map((card) => (
Expand Down

0 comments on commit 98b115d

Please sign in to comment.