Skip to content

Commit

Permalink
fix: user select input container style
Browse files Browse the repository at this point in the history
  • Loading branch information
lovrozagar committed Jul 6, 2024
1 parent 85996fe commit c0a3285
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@renderui/core",
"version": "1.3.6",
"version": "1.3.7",
"private": false,
"description": "React UI library with highly modular and ready-out-of-the-box components",
"license": "MIT",
Expand Down
2 changes: 1 addition & 1 deletion src/components/_shared/classes/input-container-classes.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { cva } from '@renderui/utils'

const inputContainerClasses = cva(
'group relative box-border select-naone appearance-none h-[40px] min-w-0 flex justify-center whitespace-nowrap rounded text-sm font-medium outline-none transition-[box-shadow,background-color,transform,opacity] duration-fast disabled:cursor-not-allowed disabled:opacity-40 cursor-text items-center gap-2 overflow-hidden text-mode-contrast h-[40px] before:content-[""] before:absolute before:block before:left-0 before:top-0 before:size-full before:rounded-[inherit] before:z-[1] before:ring-ring-color before:ring-offset-0 before:ring-offset-background data-[focus-within=true]:before:ring-[2px] data-[hover=true]:data-[focus-within=true]:before:ring-[2px] data-[hover=true]:before:ring-[1px] data-[invalid=true]:before:ring-destructive before:transition-[box-shadow,background-color,transform,opacity] before:duration-fast',
'group relative box-border appearance-none h-[40px] min-w-0 flex justify-center whitespace-nowrap rounded text-sm font-medium outline-none transition-[box-shadow,background-color,transform,opacity] duration-fast disabled:cursor-not-allowed disabled:opacity-40 cursor-text items-center gap-2 overflow-hidden text-mode-contrast h-[40px] before:content-[""] before:absolute before:block before:left-0 before:top-0 before:size-full before:rounded-[inherit] before:z-[1] before:ring-ring-color before:ring-offset-0 before:ring-offset-background data-[focus-within=true]:before:ring-[2px] data-[hover=true]:data-[focus-within=true]:before:ring-[2px] data-[hover=true]:before:ring-[1px] data-[invalid=true]:before:ring-destructive before:transition-[box-shadow,background-color,transform,opacity] before:duration-fast',
{
variants: {
variant: {
Expand Down

0 comments on commit c0a3285

Please sign in to comment.