Skip to content

Commit

Permalink
feat : menu profile text 크기 변경
Browse files Browse the repository at this point in the history
  • Loading branch information
Hellol77 committed Jul 29, 2024
1 parent 9c024cf commit 6532004
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 0 deletions.
1 change: 1 addition & 0 deletions frontend/src/components/menu/menu.js
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ export default class Menu {
profileFooter.appendChild(instagramLink);

const profileText = document.createElement("p");
profileText.classList.add("profile_text");
profileText.textContent = "Made by Hellol";
profileFooter.appendChild(profileText);

Expand Down
7 changes: 7 additions & 0 deletions frontend/src/styles/menu.css
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,7 @@ footer a {

footer {
gap: 20px;
margin-top: 20px;
z-index: 110;
display: flex;
align-items: center;
Expand All @@ -92,3 +93,9 @@ footer {
font-size: 1.2rem;
color: #ccc;
}

.profile_text {
font-size: 1.5rem;
color: #fff;
font-family: "Dongle", sans-serif;
}

0 comments on commit 6532004

Please sign in to comment.