Skip to content

Commit

Permalink
fix(Tab): stylint failing
Browse files Browse the repository at this point in the history
  • Loading branch information
endv-bogdanb committed Jul 29, 2024
1 parent d89c3dc commit 54c0576
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -201,7 +201,7 @@ export const CustomTrigger: Story = {

export const KeepOpen: Story = {
render: (args: Args) => html`
<div class="rounded-m border-s border-solid border-stroke-success bg-ui-success-alt m-be-l p-b-m p-i-m">
<div class="rounded-m border-s border-solid border-stroke-success bg-ui-success-alt p-b-m p-i-m m-be-l">
<p class="text-m font-bold m-be-xs">💡 NOTE:</p>
If <code class="text-text-danger">keepOpenOnSelect</code> is set, the dropdown will remain open after a selection
is made.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,7 @@ export const ExploreIcons: Story = {
(icon) => html`
<div class="group flex flex-col items-stretch text-center outline-0" role="button" tabindex="0">
<div
class="border flex w-full justify-center rounded-m border-s border-solid border-stroke-primary transition-[shadow,transform] m-be-s p-b-m p-i-0 group-hover:scale-125 group-hover:shadow-l"
class="border flex w-full justify-center rounded-m border-s border-solid border-stroke-primary transition-[shadow,transform] p-b-m p-i-0 m-be-s group-hover:scale-125 group-hover:shadow-l"
>
${Template({ ...args, name: icon })}
</div>
Expand Down
2 changes: 1 addition & 1 deletion packages/beeq/src/components/steps/bq-steps.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ export class BqSteps {
>
<slot />
<bq-divider
class={`absolute -z-10 inset-ie-0 inset-is-0 p-i-s ${dividerPaddingTop}`}
class={`absolute -z-10 p-i-s inset-ie-0 inset-is-0 ${dividerPaddingTop}`}
strokeColor={this.dividerColor}
strokeThickness={2}
exportparts="base:divider-base,dash-start:divider-dash-start,dash-end:divider-dash-end"
Expand Down

0 comments on commit 54c0576

Please sign in to comment.