Skip to content
This repository has been archived by the owner on Dec 2, 2024. It is now read-only.

Commit

Permalink
Allow widget selection
Browse files Browse the repository at this point in the history
  • Loading branch information
dzbo committed Oct 17, 2024
1 parent 8da33bc commit 89b3248
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions domains/grid/components/GridWidget.vue
Original file line number Diff line number Diff line change
Expand Up @@ -131,8 +131,11 @@ onMounted(() => {

<template>
<div
class="group relative flex h-full select-none flex-col rounded-12 border border-neutral-90 bg-neutral-100"
:class="{ 'shadow-neutral-drop-shadow-1xl': !isAddContentWidget }"
class="group relative flex h-full flex-col rounded-12 border border-neutral-90 bg-neutral-100"
:class="{
'shadow-neutral-drop-shadow-1xl': !isAddContentWidget,
'select-none': isAllowToEdit,
}"
>
<!-- Move handle -->
<div
Expand Down

0 comments on commit 89b3248

Please sign in to comment.