Skip to content

Commit

Permalink
chore: update html node
Browse files Browse the repository at this point in the history
  • Loading branch information
ss-dimasm committed Dec 30, 2024
1 parent 41b5b88 commit 0f8b9fe
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@

exports[`Features > should render the component 1`] = `
<DocumentFragment>
<div
<ul
class="mocked-styled-2 el-features"
>
<div
<li
aria-label="Bathroom"
class="mocked-styled-1 el-features-item"
>
Expand All @@ -17,8 +17,8 @@ exports[`Features > should render the component 1`] = `
</span>
</span>
1
</div>
<div
</li>
<li
aria-label="Bedroom"
class="mocked-styled-1 el-features-item"
>
Expand All @@ -30,7 +30,7 @@ exports[`Features > should render the component 1`] = `
</span>
</span>
2
</div>
</div>
</li>
</ul>
</DocumentFragment>
`;
4 changes: 2 additions & 2 deletions src/components/features/styles.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ export const ElFeaturesItemIcon = styled.span`
font-size: var(--size-4);
`

export const ElFeaturesItem = styled.div`
export const ElFeaturesItem = styled.li`
display: inline-flex;
align-items: flex-start;
gap: var(--spacing-1);
Expand All @@ -27,7 +27,7 @@ export const ElFeaturesItem = styled.div`
}
`

export const ElFeatures = styled.div`
export const ElFeatures = styled.ul`
display: inline-flex;
align-items: flex-start;
gap: var(--spacing-3);
Expand Down

0 comments on commit 0f8b9fe

Please sign in to comment.