-
Notifications
You must be signed in to change notification settings - Fork 0
Increase navbar logo size and brand presence #22
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
Changes from all commits
500063c
aa81978
9dbdc09
f5b7795
3ddbaa7
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -15,6 +15,47 @@ | |
| max-width: 44rem; | ||
| } | ||
|
|
||
| .heroIdentity { | ||
| display: flex; | ||
| align-items: center; | ||
| gap: 1rem; | ||
| margin-bottom: 1.4rem; | ||
| } | ||
|
|
||
| .heroLogoFrame { | ||
| flex: 0 0 auto; | ||
| display: grid; | ||
| place-items: center; | ||
| width: 5.6rem; | ||
| height: 5.6rem; | ||
| border: 1px solid var(--site-border); | ||
| border-radius: 28px; | ||
| background: var(--site-panel-surface); | ||
| box-shadow: 0 22px 46px var(--site-panel-shadow); | ||
| } | ||
|
|
||
| .heroLogo { | ||
| width: 4.4rem; | ||
| height: 4.4rem; | ||
| object-fit: contain; | ||
| } | ||
|
|
||
| .heroIdentityText { | ||
| min-width: 0; | ||
| } | ||
|
|
||
| .heroName { | ||
| display: block; | ||
| margin-bottom: 0.4rem; | ||
| font-family: var(--ifm-heading-font-family); | ||
| font-size: clamp(1.6rem, 2vw, 1.95rem); | ||
| line-height: 0.95; | ||
| } | ||
|
|
||
| .heroKicker { | ||
| margin-bottom: 0; | ||
| } | ||
|
|
||
| .heroPanel { | ||
| border: 1px solid var(--site-border); | ||
| border-radius: 8px; | ||
|
|
@@ -33,6 +74,11 @@ | |
| font-weight: 700; | ||
| } | ||
|
|
||
| .cardEyebrow { | ||
| font-family: var(--ifm-font-family-base); | ||
| line-height: 1.3; | ||
| } | ||
|
|
||
| .kicker, | ||
| .sectionEyebrow { | ||
| color: var(--ifm-color-primary-dark); | ||
|
|
@@ -136,8 +182,11 @@ | |
| grid-template-columns: repeat(2, minmax(0, 1fr)); | ||
| } | ||
|
|
||
| .flowGrid, | ||
| .migrationGrid { | ||
| grid-template-columns: repeat(2, minmax(0, 1fr)); | ||
| } | ||
|
|
||
| .flowGrid { | ||
| grid-template-columns: repeat(3, minmax(0, 1fr)); | ||
| } | ||
|
|
||
|
|
@@ -164,6 +213,10 @@ | |
| color: var(--ifm-color-content-secondary); | ||
| } | ||
|
|
||
| .flowCard .cardEyebrow { | ||
| margin-bottom: 0.7rem; | ||
| } | ||
|
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. CSS specificity override on eyebrow heading line-heightLow Severity The new Additional Locations (2) |
||
|
|
||
| .inlineCode { | ||
| display: block; | ||
| margin: 0 0 1rem; | ||
|
|
@@ -240,6 +293,22 @@ | |
| padding: 2.2rem 0 1.8rem; | ||
| } | ||
|
|
||
| .heroIdentity { | ||
| align-items: flex-start; | ||
| gap: 0.85rem; | ||
| } | ||
|
|
||
| .heroLogoFrame { | ||
| width: 4.8rem; | ||
| height: 4.8rem; | ||
| border-radius: 22px; | ||
| } | ||
|
|
||
| .heroLogo { | ||
| width: 3.7rem; | ||
| height: 3.7rem; | ||
| } | ||
|
|
||
| .heroLayout, | ||
| .personaGrid, | ||
| .flowGrid, | ||
|
|
||


Uh oh!
There was an error while loading. Please reload this page.