Skip to content
This repository has been archived by the owner on Feb 18, 2024. It is now read-only.

Commit

Permalink
Fix the header and select field spacing
Browse files Browse the repository at this point in the history
  • Loading branch information
quentinguidee committed Nov 17, 2023
1 parent de0a113 commit 8c42e0e
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 1 deletion.
3 changes: 3 additions & 0 deletions lib/components/Header/Header.sass
Original file line number Diff line number Diff line change
Expand Up @@ -52,3 +52,6 @@
&-bottom
width: 100%
padding-bottom: 10px

& h1
padding: 10px 0
4 changes: 3 additions & 1 deletion lib/components/Header/Header.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,9 @@ export function Header<T extends IHeaderLink, U extends IHeaderLink>(
{...linkLogoProps}
>
<Logo size={24} />
<Title variant="h4">{appName ?? "Vertex"}</Title>
<div>
<Title variant="h4">{appName ?? "Vertex"}</Title>
</div>
</Link>
</div>
{(children || title) && (
Expand Down
3 changes: 3 additions & 0 deletions lib/components/SelectField/SelectField.sass
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,9 @@
.select-field
position: relative

& > *
margin: 0

&-input
position: relative
padding-right: 12px
Expand Down

0 comments on commit 8c42e0e

Please sign in to comment.