Unverified Commit 97d6cc1e authored by Aysam Guerler's avatar Aysam Guerler Committed by GitHub
Browse files

Merge pull request #21025 from dannon/fix-panel-scroll

[25.1] Fix horizontal scrolling w/ GButton in input-group-append
parents 470432ae 7abeb295
Loading
Loading
Loading
Loading
+10 −0
Original line number Diff line number Diff line
@@ -317,3 +317,13 @@ const buttonElementRef = useResolveElement(buttonRef);
    }
}
</style>

<style lang="scss">
// Fix for GButton inside Bootstrap input-group-append
// Prevents horizontal scrolling issues caused by flex layout conflicts
// This must be unscoped to target Bootstrap's input-group-append
.input-group-append .g-button {
    flex-shrink: 0;
    overflow: hidden;
}
</style>