Skip to content

Commit

Permalink
Define a minimum width for the logo
Browse files Browse the repository at this point in the history
Otherwise it looks a little tiny...
  • Loading branch information
edwilde committed Oct 27, 2023
1 parent 050b8b9 commit 3c96973
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions .storybook/manager-head.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
<!--
Add code to be inserted into the Storybook manager <head> below.
@see https://storybook.js.org/docs/react/addons/writing-presets#previewmanager-templates
This is useful if you want to hide parts of the interface.
-->
<style>
/* define a minimum width for the logo */
.sidebar-header a > img {
min-width: 120px;
}
</style>

0 comments on commit 3c96973

Please sign in to comment.