change(ui): dashboard inputs - border

This commit is contained in:
Shekar Siri 2024-07-04 12:11:40 +02:00
parent cca49f0361
commit 9822e0e77c
2 changed files with 3 additions and 3 deletions

View file

@ -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>

View file

@ -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',