-
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
Open
arnest00
wants to merge
1
commit into
main
Choose a base branch
from
feat--branding-header-component
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
+81
−11
Open
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -22,6 +22,7 @@ | |
| /* neutrals */ | ||
| --cv-black: hsl(0deg 0% 0%); | ||
| --cv-white: hsl(0deg 0% 100%); | ||
| --cv-grey: hsl(0deg 0% 50%); | ||
| } | ||
|
|
||
| .cv-panel { | ||
|
|
@@ -43,16 +44,28 @@ | |
| } | ||
|
|
||
| /* Panel header */ | ||
| .cv-panel__header { | ||
| padding: 1rem 1.5rem 0.5rem; | ||
| border-bottom: 1px solid var(--cv-white); | ||
| .cv-header { | ||
| display: flex; | ||
| gap: 1rem; | ||
| align-items: center; | ||
| padding: 1rem 1.5rem; | ||
| /* TODO: The `border-bottom` color is equal to `--cv-color-gray-50` and should be replaced with the variable when implemented */ | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe 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 |
||
| border-bottom: 1px solid oklch(from oklch(50.0% 0.000 0) 50% calc(0 + (sin(0.6 * pi) * c)) h); | ||
| background-color: var(--cv-white); | ||
| } | ||
|
|
||
| .cv-header__logo { | ||
| --header-logo-dimensions: 2rem; | ||
|
|
||
| width: var(--header-logo-dimensions); | ||
| height: var(--header-logo-dimensions); | ||
| } | ||
|
|
||
| .cv-panel__title { | ||
| .cv-header__title { | ||
| margin: 0; | ||
| font-size: 1.125rem; | ||
| font-weight: 600; | ||
| color: var(--cv-white); | ||
| color: var(--cv-black); | ||
| } | ||
|
|
||
| /* Panel content */ | ||
|
|
||
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.
This doesn't look like it's being used in this file. Can we delete it, or am I missing it somewhere else?