Skip to content
Permalink

Comparing changes

This is a direct comparison between two commits made in this repository or its related repositories. View the default comparison for this range or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: storybookjs/frontpage
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 82869ca0b0b9a9811b0070e64ab86627d1f1ef60
Choose a base ref
..
head repository: storybookjs/frontpage
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: e7722aeee7e28eeab089a0a8fc67bc98dfd9e807
Choose a head ref
Showing with 5 additions and 1 deletion.
  1. +5 βˆ’1 src/components/basics/Breadcrumb.stories.js
6 changes: 5 additions & 1 deletion src/components/basics/Breadcrumb.stories.js
Original file line number Diff line number Diff line change
@@ -6,4 +6,8 @@ export default {
component: Breadcrumb,
};

export const Default = () => <Breadcrumb to="/">View full catalog</Breadcrumb>;
export const Default = () => (
<div style={{ paddingTop: '2rem' }}>
<Breadcrumb to="/">View full catalog</Breadcrumb>
</div>
);