Skip to content

Commit

Permalink
fix: fixed more styles
Browse files Browse the repository at this point in the history
  • Loading branch information
ovflowd committed Nov 25, 2023
1 parent 61c9f63 commit dc29038
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 3 deletions.
2 changes: 1 addition & 1 deletion components/Common/AvatarGroup/Avatar/index.stories.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ export const Default: Story = {

export const NoSquare: Story = {
args: {
src: '/static/images/logos/stacked-dark.svg',
src: '/static/images/logos/nodejs.png',
alt: 'SD',
},
};
Expand Down
5 changes: 5 additions & 0 deletions components/Common/Breadcrumbs/BreadcrumbItem/index.module.css
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,10 @@
text-sm
font-medium;

a {
@apply flex-1;
}

&,
> a,
> a:hover {
Expand All @@ -19,6 +23,7 @@
.separator {
@apply h-4
w-4
flex-1
text-neutral-600
dark:text-neutral-400;
}
Expand Down
4 changes: 2 additions & 2 deletions components/__design__/text.stories.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -31,14 +31,14 @@ export const InlineCode: StoryObj = {

export const Headings: StoryObj = {
render: () => (
<>
<div className="mdxContent">
<h1>HTML Section Heading 1</h1>
<h2>HTML Section Heading 2</h2>
<h3>HTML Section Heading 3</h3>
<h4>HTML Section Heading 4</h4>
<h5>HTML Section Heading 5</h5>
<h6>HTML Section Heading 6</h6>
</>
</div>
),
};

Expand Down

0 comments on commit dc29038

Please sign in to comment.