-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' of https://github.com/TYPO3incubator/surfcamp-team2…
… into main
- Loading branch information
Showing
9 changed files
with
46 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 4 additions & 0 deletions
4
...tylesheet/components/atoms/_menuLink.scss → ...ylesheet/components/atoms/_menu-link.scss
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,11 @@ | ||
.menu-link{ | ||
display: block; | ||
text-decoration: none; | ||
color: var(--color-base-text-secondary); | ||
font-size: $font-18; | ||
&:hover{ | ||
color: var(--color-secondary); | ||
} | ||
} | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
local_packages/portfolio/Resources/Private/Templates/Partials/Navigation/Footer.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
15 changes: 15 additions & 0 deletions
15
local_packages/portfolio/Resources/Public/JavaScript/app.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
"use strict"; | ||
function headerComponent() { | ||
const header = document.querySelector('.header'); | ||
const headerMenuButtonToggle = header === null || header === void 0 ? void 0 : header.querySelector('.header__mobile-burger'); | ||
const headerNavigationContainer = header === null || header === void 0 ? void 0 : header.querySelector('.header__menu'); | ||
if (headerMenuButtonToggle) { | ||
headerMenuButtonToggle.addEventListener('click', () => { | ||
if (headerNavigationContainer) { | ||
headerNavigationContainer.classList.toggle('active'); | ||
headerMenuButtonToggle.classList.toggle('active'); | ||
} | ||
}); | ||
} | ||
} | ||
headerComponent(); |
1 change: 1 addition & 0 deletions
1
local_packages/portfolio/Resources/Public/Stylesheet/styles.css
Large diffs are not rendered by default.
Oops, something went wrong.
1 change: 1 addition & 0 deletions
1
local_packages/portfolio/Resources/Public/Stylesheet/styles.css.map
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters