Skip to content

Commit

Permalink
fix: addresses an issue with the inline logo sizing (#3698)
Browse files Browse the repository at this point in the history
  • Loading branch information
janechu authored Aug 12, 2020
1 parent aeb7530 commit 68daabb
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion sites/fast-tooling-examples/app/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,8 @@
<div class="toolbar-logo">
<fast-anchor href="/" appearance="lightweight">
<img
src="<%= require('@microsoft/site-utilities/statics/assets/fast-inline-logo.svg') %>"
src="<%= require('@microsoft/site-utilities/statics/assets/fast-inline-logo-light.svg') %>"
style="height: 32px;"
/>
<span>Tooling Examples</span>
</fast-anchor>
Expand Down
2 changes: 1 addition & 1 deletion sites/site-utilities/src/components/logo/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ const backgroundStyle = {
justifyContent: "space-between",
padding: "8px",
};
const imageStyle = { verticalAlign: "middle" };
const imageStyle = { verticalAlign: "middle", height: "32px" };
const spanStyle = { verticalAlign: "middle", margin: "0 10px" };

export const Logo: React.FC<LogoProps> = ({
Expand Down

0 comments on commit 68daabb

Please sign in to comment.