-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix : apply feedback in pull request
- Loading branch information
1 parent
66f9849
commit 32ec7fa
Showing
4 changed files
with
70 additions
and
78 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,68 @@ | ||
import "./link-button/link-button.js"; | ||
|
||
const template = document.createElement("template"); | ||
template.innerHTML = ` | ||
<style> | ||
:host { | ||
position: fixed; | ||
top: 0; | ||
left: 0; | ||
padding: 20px 0; | ||
width: 100%; | ||
border-bottom: 1px solid #D3D3D3; | ||
background-color: rgba(255, 255, 255, 0.8); | ||
} | ||
header { | ||
width: 80%; | ||
margin: 0 auto; | ||
justify-content: space-between; | ||
display: flex; | ||
align-items: center; | ||
} | ||
.buttons-container { | ||
display: flex; | ||
} | ||
a { | ||
display: flex; | ||
gap: 10px; | ||
align-items: center; | ||
text-decoration: none; | ||
} | ||
a img { | ||
width: 45px; | ||
height: 22.5px; | ||
} | ||
a span { | ||
font-size: 20px; | ||
font-weight: 500; | ||
color: black; | ||
} | ||
</style> | ||
<header> | ||
<a href="/"> | ||
<img src="images/logo.png" alt="logo" /> | ||
<span>달레 스터디</span> | ||
</a> | ||
<div class="buttons-container"> | ||
<link-button href="#join-instruction-container" size="large" variant="primary">참여방법 안내</link-button> | ||
<link-button href="https://discord.gg/43UkheRV" size="large" variant="secondary">디스코드 참여하기</link-button> | ||
</div> | ||
</header> | ||
`; | ||
|
||
class HeaderComponent extends HTMLElement { | ||
constructor() { | ||
super(); | ||
this.attachShadow({ mode: "open" }); | ||
this.shadowRoot.appendChild(template.content.cloneNode(true)); | ||
} | ||
} | ||
|
||
customElements.define("header-component", HeaderComponent); | ||
|
This file was deleted.
Oops, something went wrong.
This file was deleted.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,7 @@ | ||
import "./components/divider/divider.js"; | ||
import "./components/footer-link/footer-link.js"; | ||
import "./components/header.js" | ||
import "./components/hero/hero.js"; | ||
import "./components/link-button/link-button.js"; | ||
import "./components/seo-meta-tag/seo-meta-tag.js"; | ||
import "./components/header/header.js" | ||
|