diff --git a/frontend/src/index.css b/frontend/src/index.css index 937631be..f0f04bbc 100644 --- a/frontend/src/index.css +++ b/frontend/src/index.css @@ -379,3 +379,9 @@ dialog::backdrop { opacity: 0; } } + +@layer components { + .radio-container:has(input:checked) { + @apply border-blue-500 bg-blue-400/10 text-blue-800; + } +} diff --git a/frontend/src/pages/OnboardingFlow/OnboardingModal/Steps/CreateFirstWorkspace/index.jsx b/frontend/src/pages/OnboardingFlow/OnboardingModal/Steps/CreateFirstWorkspace/index.jsx index 3c9949f8..d2624ef6 100644 --- a/frontend/src/pages/OnboardingFlow/OnboardingModal/Steps/CreateFirstWorkspace/index.jsx +++ b/frontend/src/pages/OnboardingFlow/OnboardingModal/Steps/CreateFirstWorkspace/index.jsx @@ -3,7 +3,7 @@ import { useNavigate } from "react-router-dom"; import paths from "@/utils/paths"; import Workspace from "@/models/workspace"; -function CreateFirstWorkspace() { +function CreateFirstWorkspace({ prevStep }) { const navigate = useNavigate(); const handleCreate = async (e) => { @@ -47,6 +47,13 @@ function CreateFirstWorkspace() {
+ + +
+ + +
+
+ + ); + } + + return ( +
+
+
+
+
+
+ +
+ +
+
+ +
+
+
+ +
+ +
+
+ + + +
+
+ + + +
+
+ + + +
+
+
+
+ +
+
+
+ +
+