diff --git a/src/widgets/button/OpenQuizButton.tsx b/src/widgets/button/OpenQuizButton.tsx index 71f204f..a24105a 100644 --- a/src/widgets/button/OpenQuizButton.tsx +++ b/src/widgets/button/OpenQuizButton.tsx @@ -78,14 +78,13 @@ export default function OpenQuizButton({ sx={[ { overflow: "hidden", + py: "23px", + px: "40px", + fontSize: "20px", color: buttonTextColor, backgroundColor: buttonBackgroundColor, - }, - withShadow && { - boxShadow: "0px 0px 8px 0px rgba(0, 0, 0, 0.7)", - }, - !rounded && { - borderRadius: 0, + boxShadow: withShadow ? "2px 5px 20px 2px rgba(25, 6, 50, 0.4), 0 2px 10px 0 rgba(35, 17, 58, 0.1)" : "none", + borderRadius: rounded ? "30px" : 0, }, Boolean(fixedSide) && { position: "fixed", diff --git a/src/widgets/shared/RunningStripe.tsx b/src/widgets/shared/RunningStripe.tsx index 0faf39a..a52aed3 100644 --- a/src/widgets/shared/RunningStripe.tsx +++ b/src/widgets/shared/RunningStripe.tsx @@ -13,9 +13,9 @@ export default function RunningStripe({ sx = [] }: Props) { sx={[ { position: "absolute", - height: "30px", + height: "70px", width: "140px", - backgroundColor: "rgba(255 255 255 / 0.6)", + background: "linear-gradient(0deg, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0.1) 100%)", animation: "runningStripe linear 3s infinite", transform: "rotate(-60deg)", "@keyframes runningStripe": {