Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion app/forms/idp/shared.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ export function MetadataSourceField({
} = useController({ control, name: 'idpMetadataSource' })
return (
<fieldset>
<legend id="metadata-source-legend" className="mb-2 text-sans-md">
<legend id="metadata-source-legend" className="mb-2 text-sans-md text-raise">
Metadata source
</legend>
{/* TODO: probably need some help text here */}
Expand Down
2 changes: 1 addition & 1 deletion app/pages/project/instances/AutoRestartCard.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,7 @@ type FormMetaProps = {

const FormMeta = ({ label, tip, children }: FormMetaProps) => (
<div>
<div className="mb-2 flex items-center gap-1 border-b pb-2 text-sans-md border-secondary">
<div className="mb-2 flex items-center gap-1 border-b pb-2 text-sans-md text-raise border-secondary">
<div>{label}</div>
{tip && <TipIcon>{tip}</TipIcon>}
</div>
Expand Down
6 changes: 5 additions & 1 deletion app/ui/lib/FieldLabel.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,11 @@ export const FieldLabel = ({
const Component = as || 'label'
return (
<div className={cn(className, 'flex h-4 items-center space-x-2')}>
<Component id={id} className="flex items-center text-sans-md" htmlFor={htmlFor}>
<Component
id={id}
className="flex items-center text-sans-md text-raise"
htmlFor={htmlFor}
>
{children}
{optional && (
// Announcing this optional text is unnecessary as the required attribute on the
Expand Down
Loading