Skip to content

Commit

Permalink
fix outlined field hover border color
Browse files Browse the repository at this point in the history
  • Loading branch information
lerte committed Oct 12, 2024
1 parent 45857c0 commit 6b502bc
Show file tree
Hide file tree
Showing 4 changed files with 1,127 additions and 1,126 deletions.
2 changes: 1 addition & 1 deletion packages/actify/src/components/Field/Field.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import { cubicBezier, motion } from 'framer-motion'

import React from 'react'
import clsx from 'clsx'
import styles from './styles/actify.module.css'
import styles from './styles/field.module.css'

export interface FieldProps extends SupportingTextProps {
label?: string
Expand Down
2 changes: 1 addition & 1 deletion packages/actify/src/components/Field/FilledField.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { Field, FieldProps } from './Field'

import React from 'react'
import styles from './styles/actify.module.css'
import styles from './styles/field.module.css'

interface FilledFieldProps extends FieldProps, React.ComponentProps<'div'> {}

Expand Down
2 changes: 1 addition & 1 deletion packages/actify/src/components/Field/OutlinedField.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { Field, FieldProps } from './Field'

import styles from './styles/actify.module.css'
import styles from './styles/field.module.css'

export interface OutlinedFieldProps
extends FieldProps,
Expand Down
Loading

0 comments on commit 6b502bc

Please sign in to comment.