e248e0073d
I had to downgrade Vite because the Storybook builder does not support v5 yet. Therefore this will be on a separate branch and updated as we move along with the codebase. Signed-off-by: André Jaenisch <andre.jaenisch@posteo.de>
32 lines
605 B
CSS
32 lines
605 B
CSS
.storybook-header {
|
|
font-family: 'Nunito Sans', 'Helvetica Neue', Helvetica, Arial, sans-serif;
|
|
border-bottom: 1px solid rgba(0, 0, 0, 0.1);
|
|
padding: 15px 20px;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
}
|
|
|
|
.storybook-header svg {
|
|
display: inline-block;
|
|
vertical-align: top;
|
|
}
|
|
|
|
.storybook-header h1 {
|
|
font-weight: 700;
|
|
font-size: 20px;
|
|
line-height: 1;
|
|
margin: 6px 0 6px 10px;
|
|
display: inline-block;
|
|
vertical-align: top;
|
|
}
|
|
|
|
.storybook-header button + button {
|
|
margin-left: 10px;
|
|
}
|
|
|
|
.storybook-header .welcome {
|
|
color: #333;
|
|
font-size: 14px;
|
|
margin-right: 10px;
|
|
}
|