File tree Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -19,6 +19,7 @@ export const IconArrowSmall = memo<
1919 const classes = cn ( className , {
2020 'rotate-180' : displayDirection === 'left' ,
2121 'rotate-180 rtl:rotate-0' : displayDirection === 'start' ,
22+ 'rtl:rotate-180' : displayDirection === 'end' ,
2223 'rotate-90' : displayDirection === 'down' ,
2324 } ) ;
2425 return (
Original file line number Diff line number Diff line change @@ -108,7 +108,7 @@ export function Navigation({
108108 onClick = { handleScrollLeft }
109109 aria-label = "Scroll left"
110110 className = { cn (
111- 'bg-secondary-button dark:bg-secondary-button-dark h-8 px-2 rounded-l border-gray-20 border-r rtl:rotate-180 ' ,
111+ 'bg-secondary-button dark:bg-secondary-button-dark h-8 px-2 rounded-l rtl:rounded-r rtl:rounded-l-none border-gray-20 border-r rtl:border-l rtl:border-r-0 ' ,
112112 {
113113 'text-primary dark:text-primary-dark' : canScrollLeft ,
114114 'text-gray-30' : ! canScrollLeft ,
@@ -120,7 +120,7 @@ export function Navigation({
120120 onClick = { handleScrollRight }
121121 aria-label = "Scroll right"
122122 className = { cn (
123- 'bg-secondary-button dark:bg-secondary-button-dark h-8 px-2 rounded-e rtl:rotate-180 ' ,
123+ 'bg-secondary-button dark:bg-secondary-button-dark h-8 px-2 rounded-e' ,
124124 {
125125 'text-primary dark:text-primary-dark' : canScrollRight ,
126126 'text-gray-30' : ! canScrollRight ,
You can’t perform that action at this time.
0 commit comments