We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 470432a + 7abeb29 commit 97d6cc1Copy full SHA for 97d6cc1
client/src/components/BaseComponents/GButton.vue
@@ -317,3 +317,13 @@ const buttonElementRef = useResolveElement(buttonRef);
317
}
318
319
</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