Skip to content

Commit

Permalink
Merge pull request #46 from swiss/feature/shop
Browse files Browse the repository at this point in the history
feat(shop): fix search icon allignment
  • Loading branch information
satefan authored May 2, 2024
2 parents 065e80c + 79e27f2 commit 6d91076
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 3 deletions.
5 changes: 4 additions & 1 deletion app/components/stories/components/Notification.stories.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import Notification from '../../ch/components/Notification.vue'
type: {
control: {
type: 'select',
options: ['info', 'warning', 'error', 'success', 'alert'],
options: ['info', 'warning', 'error', 'success', 'alert', 'hint'],
},
},
icon: {
Expand Down Expand Up @@ -69,6 +69,9 @@ For this specific use case, the [Alert Banner component](?path=/docs/components-
<Canvas>
<main>
<div>
<div class="notification notification--hint">
Hint: A new software update is available.
</div>
<div class="notification notification--info">
Info: A new software update is available.
</div>
Expand Down
8 changes: 6 additions & 2 deletions css/components/search.postcss
Original file line number Diff line number Diff line change
Expand Up @@ -51,9 +51,13 @@
}

.search__button__icon {
@apply !h-9;
@apply !h-9 !w-9;
@screen lg {
@apply !h-7;
@apply !h-7 !w-7;
}

svg {
stroke-width: 0.5px;
}
}

Expand Down

0 comments on commit 6d91076

Please sign in to comment.