Skip to content
This repository has been archived by the owner on Feb 5, 2025. It is now read-only.

Commit

Permalink
fix: add white background to carousel (DSN-2538) (#308)
Browse files Browse the repository at this point in the history
  • Loading branch information
mikaalnaik authored Nov 13, 2024
1 parent 8626fa1 commit be4aa7c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 0 deletions.
2 changes: 2 additions & 0 deletions packages/chat/src/components/Carousel/styles.css.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
import { style } from '@vanilla-extract/css';

import { COLORS } from '@/styles/colors';
import { CHAT_WIDTH } from '@/views/ChatWidget/styles.css';

import { SMALL_AVATAR_SIZE } from '../Avatar/styles.css';
Expand Down Expand Up @@ -31,6 +32,7 @@ export const cardsInnerContainer = style({
display: 'flex',
alignItems: 'start',
gap: `${GUTTER_WIDTH}px`,
backgroundColor: COLORS.white,
});

export const carouselContainer = style({
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -123,6 +123,7 @@ export const ActionableCard: Story = {

export const Carousel: Story = {
args: {
avatar: EMPTY_IMAGE,
messages: [
{
type: 'carousel',
Expand Down

0 comments on commit be4aa7c

Please sign in to comment.