diff --git a/app/ui/lib/Table.tsx b/app/ui/lib/Table.tsx
index b48d13771d..6744f077da 100644
--- a/app/ui/lib/Table.tsx
+++ b/app/ui/lib/Table.tsx
@@ -28,7 +28,7 @@ export function Table({ className, ...props }: TableProps) {
autoHide={false}
>
export type TableHeaderProps = JSX.IntrinsicElements['thead']
Table.Header = ({ children, className }: TableHeaderProps) => (
-
+
{children}
)
@@ -50,11 +50,11 @@ Table.HeadCell = ({ className, children, ...props }: TableHeadCellProps) => (
- |
@@ -98,13 +98,13 @@ Table.Cell = ({ height = 'small', className, children, ...props }: TableCellProp
@@ -127,7 +127,7 @@ type TableEmptyBoxProps = {
export const TableEmptyBox = ({ children, border = true }: TableEmptyBoxProps) => (
{children}
diff --git a/app/ui/lib/TextInput.tsx b/app/ui/lib/TextInput.tsx
index d602f7ffde..5fa512a542 100644
--- a/app/ui/lib/TextInput.tsx
+++ b/app/ui/lib/TextInput.tsx
@@ -69,7 +69,7 @@ export function TextInput({
error
? 'border-error-secondary hover:border-error'
: 'border-default hover:border-hover',
- disabled && '!border-default',
+ disabled && 'border-default!',
className
)}
>
@@ -79,7 +79,7 @@ export function TextInput({
type={type}
value={value}
className={cn(
- `w-full rounded border-none px-3 py-[0.6875rem] !outline-offset-1 text-sans-md text-raise bg-default placeholder:text-tertiary focus:outline-none disabled:cursor-not-allowed disabled:text-secondary disabled:bg-disabled`,
+ `w-full rounded border-none px-3 py-2.75 outline-offset-1! text-sans-md text-raise bg-default placeholder:text-tertiary focus:outline-none disabled:cursor-not-allowed disabled:text-secondary disabled:bg-disabled`,
error && 'focus-error',
fieldClassName,
disabled && 'text-disabled bg-disabled',
@@ -93,7 +93,7 @@ export function TextInput({
{copyable && (
)}
diff --git a/app/ui/lib/Toast.tsx b/app/ui/lib/Toast.tsx
index 8c0a727cd8..ac5f73e0f4 100644
--- a/app/ui/lib/Toast.tsx
+++ b/app/ui/lib/Toast.tsx
@@ -55,9 +55,9 @@ const color: Record = {
}
const textColor: Record = {
- success: 'text-accent children:text-accent',
- error: 'text-error children:text-error',
- info: 'text-notice children:text-notice',
+ success: 'text-accent *:text-accent',
+ error: 'text-error *:text-error',
+ info: 'text-notice *:text-notice',
}
const secondaryTextColor: Record = {
@@ -84,7 +84,7 @@ export const Toast = ({
return (
)}
-
+
|