File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ export const ChatBoxContainer = styled.div`
1111
1212 display: flex;
1313 padding: 0.5rem 1.12rem;
14- background-color: ${ ( { theme } ) => theme . colors . text . white } ;
14+ background-color: ${ ( { theme } ) => theme . colors . background . primary } ;
1515 gap: 0.5rem;
1616 border-top: 1px solid ${ ( { theme } ) => theme . colors . gray [ 300 ] } ;
1717 align-items: center;
Original file line number Diff line number Diff line change @@ -10,8 +10,8 @@ export const MessageLayout = styled.div<{ $isSenderChanged: boolean }>`
1010
1111export const Message = styled ( StyledText ) `
1212 padding: 0.4rem 0.8rem;
13- /* background-color: ${ ( { theme } ) => theme . colors . brand . primaryLight } ; */
14- border: 1.2px solid ${ ( { theme } ) => theme . colors . brand . primaryLight } ;
13+ background-color: ${ ( { theme } ) => theme . colors . brand . primaryLight } ;
14+ /* border: 1.2px solid ${ ( { theme } ) => theme . colors . brand . primaryLight } ; */
1515 border-radius: 0.8rem 0 0.8rem 0.8rem;
1616 max-width: 75%;
1717 overflow-wrap: break-word;
Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ import styled from 'styled-components';
22import ArrowIcon from '@assets/arrow/min-right.svg' ;
33
44export const CardLayout = styled . div `
5- background-color: ${ ( { theme } ) => theme . colors . gray [ 200 ] } ;
5+ background-color: ${ ( { theme } ) => theme . colors . background . divider } ;
66 border-radius: 0.5rem;
77 position: relative;
88 height: 100%;
@@ -108,7 +108,7 @@ export const OOTDImgBox = styled.div`
108108 .childSwiper .swiper-pagination-bullet-active {
109109 width: 0.375rem;
110110 height: 0.375rem;
111- background-color: ${ ( { theme } ) => theme . colors . white } ;
111+ background-color: ${ ( { theme } ) => theme . colors . background . primary } ;
112112 opacity: 1;
113113 }
114114
Original file line number Diff line number Diff line change @@ -22,7 +22,7 @@ export const TabBarList = styled.ul`
2222` ;
2323
2424export const TabBarWrapper = styled . li < { $isSelected : boolean ; $isPointer : boolean } > `
25- border-bottom: 0.13rem solid ${ ( { theme } ) => theme . colors . gray [ 200 ] } ;
25+ border-bottom: 0.13rem solid ${ ( { theme } ) => theme . colors . border . divider } ;
2626 border-image: ${ ( { $isSelected, theme } ) => ( $isSelected ? `${ theme . colors . brand . gradient } 0 0 1 0` : 'transparent' ) } ;
2727 text-align: center;
2828 flex-grow: 1;
You can’t perform that action at this time.
0 commit comments