diff --git a/web/apps/photos/src/pages/index.tsx b/web/apps/photos/src/pages/index.tsx index 733dc070a..aa1ee7554 100644 --- a/web/apps/photos/src/pages/index.tsx +++ b/web/apps/photos/src/pages/index.tsx @@ -271,7 +271,7 @@ const PRSExample: React.FC = () => { totalSlides={3} isPlaying={true} > - + { {t("HERO_SLIDE_3")} - + ); }; -const CustomSlider = styled(Slider)` - border: 1px solid green; -`; - const CustomDotGroup = styled(DotGroup)` - border: 1px solid tomato; + margin-block-start: 2px; + margin-block-end: 24px; + + button { + margin-inline-end: 12px; + width: 10px; + height: 10px; + border-radius: 50%; + border: 0; + background-color: #fff; + opacity: 0.5; + transition: opacity 0.6s ease; + /* background-clip: padding-box; */ + /* border-top: 10px solid transparent; */ + /* border-bottom: 10px solid transparent; */ + } + + button.carousel__dot--selected { + background-color: #51cd7c; + opacity: 1; + } `; const SlideContents = styled("div")`