Skip to content

Commit

Permalink
fix: update snapshots
Browse files Browse the repository at this point in the history
  • Loading branch information
sghoweri committed Jan 6, 2020
1 parent bffc7ba commit 6391dc1
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -13612,12 +13612,16 @@ bolt-link {
display: inline;
white-space: nowrap;
}
.c-bolt-link--display-block {
display: block;
}
.c-bolt-link__icon,
.c-bolt-link__text {
padding-left: 0.25rem;
}
.c-bolt-link__text {
display: inline;
max-width: 100%;
}
.c-bolt-link--headline {
color: rgba(var(--bolt-theme-headline-link), 1);
Expand Down Expand Up @@ -27192,12 +27196,16 @@ bolt-link {
display: inline;
white-space: nowrap;
}
.c-bolt-link--display-block {
display: block;
}
.c-bolt-link__icon,
.c-bolt-link__text {
padding-left: 0.25rem;
}
.c-bolt-link__text {
display: inline;
max-width: 100%;
}
.c-bolt-link--headline {
color: rgba(var(--bolt-theme-headline-link), 1);
Expand Down
14 changes: 14 additions & 0 deletions packages/components/bolt-link/__tests__/__snapshots__/link.js.snap
Original file line number Diff line number Diff line change
Expand Up @@ -221,6 +221,20 @@ exports[`link basic link 1`] = `
</bolt-link>
`;
exports[`link link display: block 1`] = `
<bolt-link display="block"
valign="center"
>
<a is="shadow-root"
class="c-bolt-link c-bolt-link--display-block c-bolt-link--valign-center"
>
<replace-with-children class="c-bolt-link__text">
Hello World
</replace-with-children>
</a>
</bolt-link>
`;
exports[`link link display: flex 1`] = `
<bolt-link display="flex"
valign="center"
Expand Down

0 comments on commit 6391dc1

Please sign in to comment.