Skip to content

Commit

Permalink
refactor(metro): simpllificando o comportamento
Browse files Browse the repository at this point in the history
  • Loading branch information
deMGoncalves committed Mar 31, 2023
1 parent 9657f0b commit 4dbffd6
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions component/metro/src/component.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,11 @@ import h from '@kuba/h'

function component (_metro, children) {
return (
<section className='metro'>
<div className='metro'>
<div className='metro__container'>
{children}
</div>
</section>
</div>
)
}

Expand Down
2 changes: 1 addition & 1 deletion component/metro/src/style.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,6 @@ export default styled`
.metro__container {
display: flex;
gap: var(--spacing_inset-xs);
transform: translateX(0);
white-space: nowrap;
}
`

0 comments on commit 4dbffd6

Please sign in to comment.