File tree 2 files changed +5
-1
lines changed
packages/effects/common-ui/src/ui/dashboard/workbench
2 files changed +5
-1
lines changed Original file line number Diff line number Diff line change @@ -37,6 +37,8 @@ defineEmits(['click']);
37
37
'border-r-0': index % 3 === 2,
38
38
'border-b-0': index < 3,
39
39
'pb-4': index > 2,
40
+ 'rounded-bl-xl': index === items.length - 3,
41
+ 'rounded-br-xl': index === items.length - 1,
40
42
}"
41
43
class =" border-border group w-full cursor-pointer border-r border-t p-4 transition-all hover:shadow-xl md:w-1/2 lg:w-1/3"
42
44
>
Original file line number Diff line number Diff line change @@ -35,8 +35,10 @@ defineEmits(['click']);
35
35
<div
36
36
:class =" {
37
37
'border-r-0': index % 3 === 2,
38
- 'pb-4': index > 2,
39
38
'border-b-0': index < 3,
39
+ 'pb-4': index > 2,
40
+ 'rounded-bl-xl': index === items.length - 3,
41
+ 'rounded-br-xl': index === items.length - 1,
40
42
}"
41
43
class =" flex-col-center border-border group w-1/3 cursor-pointer border-r border-t py-8 hover:shadow-xl"
42
44
@click =" $emit('click', item)"
You can’t perform that action at this time.
0 commit comments