Skip to content

Commit d8a39aa

Browse files
fix(app-webdir-ui): fix profile squishing
1 parent c9acac4 commit d8a39aa

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

packages/app-webdir-ui/src/WebDirectoryComponent/index.stories.js

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,10 @@ const filters = {
3939

4040
export const webDirectoryExampleDepartments = args => {
4141
return (
42+
<div className="container">
4243
<div className="uds-content-align">
44+
<div className="row">
45+
<div className="col-md-6">
4346
<WebDirectory
4447
searchType="departments"
4548
deptIds="1349,1353,32397,1518,1520,3534,1350,334996,1504,2000,2003,159390"
@@ -50,12 +53,16 @@ export const webDirectoryExampleDepartments = args => {
5053
alphaFilter={args.alphaFilter}
5154
// appPathFolder="/my/custom/path/to/component/root/example"
5255
/>
56+
</div>
57+
</div>
58+
</div>
5359
</div>
5460
);
5561
};
5662

5763
export const webDirectoryExamplePeople = args => {
5864
return (
65+
<div className="container">
5966
<div className="uds-content-align">
6067
<WebDirectory
6168
searchType="people"
@@ -67,11 +74,13 @@ export const webDirectoryExamplePeople = args => {
6774
// appPathFolder="/my/custom/path/to/component/root/example"
6875
/>
6976
</div>
77+
</div>
7078
);
7179
};
7280

7381
export const webDirectoryExampleDepartmentsAndPeople = args => {
7482
return (
83+
<div className="container">
7584
<div className="uds-content-align">
7685
<WebDirectory
7786
searchType="people_departments"
@@ -83,5 +92,6 @@ export const webDirectoryExampleDepartmentsAndPeople = args => {
8392
// appPathFolder="/my/custom/path/to/component/root/example"
8493
/>
8594
</div>
95+
</div>
8696
);
8797
};

0 commit comments

Comments
 (0)