-
Notifications
You must be signed in to change notification settings - Fork 0
feat: add header component #11
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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,40 @@ | ||
| const HEADER_LOGO = ` | ||
| <svg viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg"> | ||
| {/* Leaf */} | ||
| <path | ||
| d="M16 4C20 4 24 7 26 12C24 18 20 22 16 24C12 22 8 18 6 12C8 7 12 4 16 4Z" | ||
| fill="rgb(34, 197, 94)" | ||
| className="drop-shadow-sm" | ||
| /> | ||
| {/* Leaf vein */} | ||
| <path | ||
| d="M16 6L16 22" | ||
| stroke="rgb(21, 128, 61)" | ||
| strokeWidth="1" | ||
| className="opacity-60" | ||
| /> | ||
| {/* Small bar chart at bottom */} | ||
| <g transform="translate(10, 25)"> | ||
| <rect x="0" y="2" width="2" height="4" fill="rgb(34, 197, 94)" /> | ||
| <rect x="3" y="0" width="2" height="6" fill="rgb(234, 179, 8)" /> | ||
| <rect x="6" y="1" width="2" height="5" fill="rgb(239, 68, 68)" /> | ||
| <rect x="9" y="3" width="2" height="3" fill="rgb(34, 197, 94)" /> | ||
| </g> | ||
| </svg> | ||
| `; | ||
|
|
||
| export const createHeader = () => { | ||
| const header = document.createElement("header"); | ||
| header.classList.add("cv-header"); | ||
|
|
||
| header.innerHTML = HEADER_LOGO; | ||
| const logo = header.querySelector("svg"); | ||
| logo.classList.add("cv-header__logo"); | ||
|
|
||
| const title = document.createElement("h1"); | ||
| title.classList.add("cv-header__title"); | ||
| title.innerText = "Carbon Visualizer"; | ||
| header.append(title); | ||
|
|
||
| return header; | ||
| } |
This file contains hidden or 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 hidden or 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 hidden or 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 hidden or 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
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I can create a ticket for this if needed. I think we could add
:rootto the selector for all of the color variables, or maybe we could to add the.cvclass to the topmost.cv-paneldiv (I think?).There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yeah, that would be great! I'm not seeing an existing ticket for implementing our
.cvstyles, but we could include moving and renaming--cv-blackand--cv-whitein that work too.There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Good idea- I will create that today 😊