diff --git a/frontend/src/BDDScenariosSection.tsx b/frontend/src/BDDScenariosSection.tsx
index fef3e1d..3e3fc19 100644
--- a/frontend/src/BDDScenariosSection.tsx
+++ b/frontend/src/BDDScenariosSection.tsx
@@ -58,7 +58,7 @@ function ClauseRow({
@@ -72,7 +72,7 @@ function ClauseRow({
disabled={disabled}
rows={1}
placeholder={placeholder}
- className="flex-1 min-h-7 resize-none bg-transparent text-[12.5px] leading-relaxed text-foreground/90 outline-none placeholder:text-muted-foreground/40 disabled:opacity-60 focus:placeholder:text-muted-foreground/60 transition-colors py-0.5"
+ className="flex-1 min-h-7 resize-none bg-transparent text-sm leading-relaxed text-foreground/90 outline-none placeholder:text-muted-foreground/40 disabled:opacity-60 focus:placeholder:text-muted-foreground/60 transition-colors py-0.5"
style={{ fieldSizing: "content" } as CSSProperties}
/>
@@ -182,14 +182,14 @@ function ScenarioCard({
}
}}
onClick={(e) => e.stopPropagation()}
- className="flex-1 bg-transparent text-[13px] font-semibold text-foreground outline-none"
+ className="flex-1 bg-transparent text-sm font-semibold text-foreground outline-none"
/>
) : (
@@ -378,10 +378,10 @@ function BDDScenariosSectionInner({
{/* Section heading */}
-
+
BDD Scenarios
{scenarios.length > 0 && (
-
+
{scenarios.length}
)}
@@ -392,7 +392,7 @@ function BDDScenariosSectionInner({
setAdding(true)}
- className="flex items-center gap-1.5 rounded-lg bg-muted/40 text-muted-foreground/80 hover:bg-muted/60 hover:text-foreground px-2.5 py-1.5 text-[11px] font-semibold transition-all duration-150"
+ className="flex items-center gap-1.5 rounded-lg bg-muted/40 text-muted-foreground/80 hover:bg-muted/60 hover:text-foreground px-2.5 py-1.5 text-xs font-semibold transition-all duration-150"
>
Add scenario
@@ -404,7 +404,7 @@ function BDDScenariosSectionInner({
{isLoading ? (
) : scenarios.length > 0 ? (
@@ -422,7 +422,7 @@ function BDDScenariosSectionInner({
!adding && (
-
No BDD scenarios yet
+
No BDD scenarios yet
)
)}