Skip to content

Commit

Permalink
Merge pull request #116 from TYPO3incubator/bugfix/logo-hover
Browse files Browse the repository at this point in the history
[BUGFIX] Remove border hover on logo
  • Loading branch information
GeorgeTodea authored Apr 12, 2024
2 parents 5d2449d + 37c28a8 commit f1239b8
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -31,4 +31,10 @@ a {
&:hover {
border-bottom: 1px solid $color__primary-red;
}
}

&.main-logo {
&:hover {
border: 0;
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

<nav class="navbar navbar-expand-lg position-fixed top-0 start-0 end-0 bg-white d-lg-block">
<div class="container-fluid">
<a class="navbar-brand" href="/">
<a class="navbar-brand main-logo" href="/">
<f:image src="{settings.general.logo}" height="68" width="68"/>
</a>
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarSupportedContent" aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="Toggle navigation">
Expand Down
4 changes: 4 additions & 0 deletions local_packages/football/Resources/Public/Css/index.css
Original file line number Diff line number Diff line change
Expand Up @@ -11364,6 +11364,10 @@ a:hover {
border-bottom: 1px solid #FF3232;
}

a.main-logo:hover {
border: 0;
}

.hero {
position: relative;
height: 100vh;
Expand Down

0 comments on commit f1239b8

Please sign in to comment.