Skip to content

Commit

Permalink
style(dialog): change align items to flex-start
Browse files Browse the repository at this point in the history
  • Loading branch information
Enes5519 committed Aug 12, 2024
1 parent 108af18 commit 6f38eec
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/components/dialog/bl-dialog.css
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@
header {
display: flex;
justify-content: space-between;
align-items: center;
align-items: flex-start;
gap: var(--bl-size-2xs);
padding: var(--bl-size-xl) var(--bl-size-xl) 0 var(--bl-size-xl);
}
Expand Down
4 changes: 2 additions & 2 deletions src/components/dialog/bl-dialog.stories.ts
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,7 @@ ${BasicTemplate({...args, className: "limited-width", content: `<div class="cont

const SizingTemplate = (args: DialogArgs) => html`
<style>
bl-dialog {
#dl-sizing {
--bl-dialog-width: 31rem;
}
Expand Down Expand Up @@ -207,7 +207,7 @@ when an unknown printer took a galley of type and scrambled it to make a type sp

const CaptionLineClampTemplate = (args: DialogArgs) => html`
<style>
bl-dialog {
#dl-caption-line-clamp {
--bl-dialog-width: 31rem;
--bl-dialog-caption-line-clamp: 2;
}
Expand Down

0 comments on commit 6f38eec

Please sign in to comment.