Skip to content

Commit

Permalink
feat: fix lint and change wording
Browse files Browse the repository at this point in the history
  • Loading branch information
g-saracca committed Oct 14, 2024
1 parent 78828e8 commit bdc76d4
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/sections/layout/header/Header.module.scss
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
box-shadow: 0 1px 5px rgba(0 0 0 / 10%);

.login-btn {
color: $dv-subtext-color;
color: var(--bs-nav-link-color);
text-decoration: none;
}
}
2 changes: 1 addition & 1 deletion src/sections/layout/header/Header.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ export function Header() {
<LoggedInHeaderActions user={user} collectionRepository={collectionRepository} />
) : (
<Button onClick={handleOidcLogIn} variant="link" className={styles['login-btn']}>
OIDC {t('logIn')}
{t('logIn')}
</Button>
)}
</Navbar>
Expand Down
2 changes: 1 addition & 1 deletion src/sections/layout/header/LoggedInHeaderActions.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ export const LoggedInHeaderActions = ({
{t('navigation.apiToken')}
</Navbar.Dropdown.Item>
<Navbar.Dropdown.Item href="#" onClick={handleOidcLogout}>
OIDC {t('logOut')}
{t('logOut')}
</Navbar.Dropdown.Item>
</Navbar.Dropdown>
</>
Expand Down

0 comments on commit bdc76d4

Please sign in to comment.