Commit 7abeb295 authored by Dannon Baker's avatar Dannon Baker
Browse files

Fix horizontal scrolling w/ GButton in input-group-append

parent 79767058
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>