Skip to content
This repository has been archived by the owner on Feb 5, 2025. It is now read-only.

Commit

Permalink
feat: make launcher image undraggable (COR-4295) (#480)
Browse files Browse the repository at this point in the history
<!-- You can erase any parts of this template not applicable to your Pull Request. -->

**Fixes or implements VF-XXX**

### Brief description. What is this change?

<!-- Build up some context for your teammates on the changes made here and potential tradeoffs made and/or highlight any topics for discussion -->

### Implementation details. How do you make this change?

<!-- Explain the way/approach you follow to make this change more deeply in order to help your teammates to understand much easier this change -->

### Setup information

<!-- Notes regarding local environment. These should note any new configurations, new environment variables, etc. -->

### Deployment Notes

<!-- Notes regarding deployment the contained body of work. These should note any db migrations, etc. -->

### Related PRs

<!-- List related PRs against other branches -->

- https://github.com/voiceflow/XXXXXXXXX/pull/123

### Checklist

- [ ] Breaking changes have been communicated, including:
    - New required environment variables
    - Renaming of interfaces (API routes, request/response interface, etc)
- [ ] New environment variables have [been deployed](https://www.notion.so/voiceflow/Add-Environment-Variables-be1b0136479f45f1adece7995a7adbfb)
- [ ] Appropriate tests have been written
    - Bug fixes are accompanied by an updated or new test
    - New features are accompanied by a new test
  • Loading branch information
gillyb committed Jan 3, 2025
1 parent f186c2e commit 4327a42
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -144,6 +144,7 @@ export const imageIconStyle = recipe({
position: 'absolute',
borderRadius: 2,
left: 0,
pointerEvents: 'none',

flexShrink: 0,
transition: transition(['opacity']),
Expand Down
1 change: 1 addition & 0 deletions packages/chat/src/components/Launcher/styles.css.ts
Original file line number Diff line number Diff line change
Expand Up @@ -218,6 +218,7 @@ export const imageStyles = recipe({
height: '32px',
width: '32px',
minWidth: '32px',
pointerEvents: 'none',
},
variants: {
isOpen: {
Expand Down

0 comments on commit 4327a42

Please sign in to comment.