Skip to content

Commit 97d6cc1

Browse files
authored
Merge pull request #21025 from dannon/fix-panel-scroll
[25.1] Fix horizontal scrolling w/ GButton in input-group-append
2 parents 470432a + 7abeb29 commit 97d6cc1

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

client/src/components/BaseComponents/GButton.vue

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -317,3 +317,13 @@ const buttonElementRef = useResolveElement(buttonRef);
317317
}
318318
}
319319
</style>
320+
321+
<style lang="scss">
322+
// Fix for GButton inside Bootstrap input-group-append
323+
// Prevents horizontal scrolling issues caused by flex layout conflicts
324+
// This must be unscoped to target Bootstrap's input-group-append
325+
.input-group-append .g-button {
326+
flex-shrink: 0;
327+
overflow: hidden;
328+
}
329+
</style>

0 commit comments

Comments
 (0)