Skip to content

Commit f72e046

Browse files
committed
fix(app-events-web): remove unexpected spacing caused by widget styles
The widget-events class had flex-grow and positioning styles that caused unwanted spacing in flex container layouts at runtime. Since the widget renders no visible content, it should not occupy any space.
1 parent 5846367 commit f72e046

2 files changed

Lines changed: 5 additions & 5 deletions

File tree

packages/pluggableWidgets/events-web/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,10 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66

77
## [Unreleased]
88

9+
### Fixed
10+
11+
- We fixed an issue with the App Events widget causing unexpected spacing in the page layout.
12+
913
## [1.3.0] - 2026-02-25
1014

1115
### Fixed
Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,3 @@
1-
$brand-primary: #264ae5;
2-
$gray-dark: #606671;
31
.widget-events {
4-
flex-grow: 1;
5-
position: relative;
6-
transition: color 150ms ease 0s;
2+
display: none;
73
}

0 commit comments

Comments
 (0)