Skip to content

Commit 2b2d32b

Browse files
allow button to use full width (#412)
1 parent 0c1f9f9 commit 2b2d32b

3 files changed

Lines changed: 4 additions & 3 deletions

File tree

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
11
# Changelog
2+
## [32.5.2] - 2026-04-22
3+
- Allow AddressUtility button to use full width of component
24
## [32.5.1] - 2026-04-22
35
- Fix npm publish for scoped package - add --access public flag
46
## [32.5.0] - 2026-04-22

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@linn-it/linn-form-components-library",
3-
"version": "32.5.1",
3+
"version": "32.5.2",
44
"private": false,
55
"repository": {
66
"type": "git",

src/components/AddressUtility.js

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -57,12 +57,11 @@ function AddressUtility({
5757
return (
5858
<>
5959
<Grid container>
60-
<Grid size={4}>
60+
<Grid size={12}>
6161
<Button variant="outlined" onClick={open}>
6262
Create Or Look Up Address
6363
</Button>
6464
</Grid>
65-
<Grid size={8} />
6665
</Grid>
6766
<Dialog open={isActive} maxWidth="md">
6867
<Box

0 commit comments

Comments
 (0)