Skip to content

Commit

Permalink
Merge pull request #21466 from storybookjs/fix-storybook-introduction
Browse files Browse the repository at this point in the history
CLI: Fix styling regression on CLI starter Introduction.mdx file
  • Loading branch information
yannbf authored Mar 16, 2023
2 parents 66000bb + 6e36056 commit ebc763a
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 8 deletions.
6 changes: 4 additions & 2 deletions code/frameworks/nextjs/template/cli/js/Introduction.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ import StackAlt from './assets/stackalt.svg';
.link-item {
display: block;
padding: 20px 30px 20px 15px;
padding: 20px;
border: 1px solid #00000010;
border-radius: 5px;
transition: background 150ms ease-out, border 150ms ease-out, transform 150ms ease-out;
Expand Down Expand Up @@ -84,7 +84,9 @@ import StackAlt from './assets/stackalt.svg';
flex: none;
}
.link-item span {
.link-item span,
.link-item p {
margin: 0;
font-size: 14px;
line-height: 20px;
}
Expand Down
6 changes: 4 additions & 2 deletions code/frameworks/nextjs/template/cli/ts-3-8/Introduction.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ import StackAlt from './assets/stackalt.svg';
.link-item {
display: block;
padding: 20px 30px 20px 15px;
padding: 20px;
border: 1px solid #00000010;
border-radius: 5px;
transition: background 150ms ease-out, border 150ms ease-out, transform 150ms ease-out;
Expand Down Expand Up @@ -84,7 +84,9 @@ import StackAlt from './assets/stackalt.svg';
flex: none;
}
.link-item span {
.link-item span,
.link-item p {
margin: 0;
font-size: 14px;
line-height: 20px;
}
Expand Down
6 changes: 4 additions & 2 deletions code/frameworks/nextjs/template/cli/ts/Introduction.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ import StackAlt from './assets/stackalt.svg';
.link-item {
display: block;
padding: 20px 30px 20px 15px;
padding: 20px;
border: 1px solid #00000010;
border-radius: 5px;
transition: background 150ms ease-out, border 150ms ease-out, transform 150ms ease-out;
Expand Down Expand Up @@ -84,7 +84,9 @@ import StackAlt from './assets/stackalt.svg';
flex: none;
}
.link-item span {
.link-item span,
.link-item p {
margin: 0;
font-size: 14px;
line-height: 20px;
}
Expand Down
6 changes: 4 additions & 2 deletions code/lib/cli/rendererAssets/common/Introduction.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ import StackAlt from './assets/stackalt.svg';
.link-item {
display: block;
padding: 20px 30px 20px 15px;
padding: 20px;
border: 1px solid #00000010;
border-radius: 5px;
transition: background 150ms ease-out, border 150ms ease-out, transform 150ms ease-out;
Expand Down Expand Up @@ -82,7 +82,9 @@ import StackAlt from './assets/stackalt.svg';
flex: none;
}
.link-item span {
.link-item span,
.link-item p {
margin: 0;
font-size: 14px;
line-height: 20px;
}
Expand Down

0 comments on commit ebc763a

Please sign in to comment.