-
Notifications
You must be signed in to change notification settings - Fork 27
[BUG] [alpha] Loading container in Tags panel uses hardcoded height (128px) instead of adaptive layout or design token #39599
Description
Project
ide
Description
In the Tags panel, the loading state container is rendered with a fixed height of 128px.
This hardcoded height introduces a rigid layout constraint in a dynamic content area. Loading states should typically adapt to available space or use design system tokens to ensure consistency across different layouts and screen sizes.
Using a fixed pixel value for height in this context can lead to inconsistent spacing, especially when the container size or surrounding layout changes.
Error Message
Debug Logs
System Information
OS: Ubuntu 24.04
RAM: 32 GBScreenshots
Steps to Reproduce
Open the Tags panel
Trigger a loading state (e.g., initial load or refresh)
Inspect the loading container using DevTools
Observe the applied style: height: 128px
Expected Behavior
Loading containers should use flexible sizing (e.g., auto, flex, or token-based height)
Layout should adapt to container size and maintain consistency with design system spacing
Hardcoded pixel values should be avoided for dynamic UI states
Actual Behavior
Loading container uses a fixed height of 128px
Layout is constrained by hardcoded value
Does not adapt to surrounding layout or content
Additional Context
No response