change(ui): dashboard inputs - border
This commit is contained in:
parent
cca49f0361
commit
9822e0e77c
2 changed files with 3 additions and 3 deletions
|
|
@ -15,7 +15,7 @@ function ExCard({
|
|||
}) {
|
||||
return (
|
||||
<div
|
||||
className={'rounded-lg overflow-hidden border border-transparent p-4 bg-white hover:shadow-sm relative'}
|
||||
className={'rounded-lg overflow-hidden border border-transparent p-4 bg-white hover:shadow-sm relative hover:border-teal transition-all duration-200'}
|
||||
style={{width: '100%', height: height || 286}}
|
||||
>
|
||||
<div className="absolute inset-0 z-10 cursor-pointer" onClick={() => onCard(type)}></div>
|
||||
|
|
|
|||
|
|
@ -95,9 +95,9 @@ function WidgetWrapperNew(props: Props & RouteComponentProps) {
|
|||
return (
|
||||
<Card
|
||||
className={cn(
|
||||
'relative group rounded-lg',
|
||||
'relative group rounded-lg hover:border-teal transition-all duration-200',
|
||||
'col-span-' + widget.config.col,
|
||||
{ 'hover:shadow-sm': !isTemplate && isWidget }
|
||||
{ 'hover:shadow-sm': !isTemplate && isWidget },
|
||||
)}
|
||||
style={{
|
||||
userSelect: 'none',
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue