-
-
Notifications
You must be signed in to change notification settings - Fork 146
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Some UI improvement in the home page (#1009)
* Some UI improvement in the home page Signed-off-by: Thomas Poignant <[email protected]> * Change order Signed-off-by: Thomas Poignant <[email protected]> --------- Signed-off-by: Thomas Poignant <[email protected]> Co-authored-by: kodiakhq[bot] <49736102+kodiakhq[bot]@users.noreply.github.com>
- Loading branch information
1 parent
a754685
commit 0dcd65f
Showing
7 changed files
with
59 additions
and
5 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
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 |
---|---|---|
|
@@ -134,7 +134,7 @@ | |
} | ||
|
||
.imgRollout { | ||
margin: auto; | ||
margin: 12rem 0 0 0; | ||
top: 0; | ||
left: 0; | ||
bottom: 0; | ||
|
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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,12 @@ | ||
import React from 'react'; | ||
import styles from './styles.module.css'; | ||
|
||
export function Headline() { | ||
return ( | ||
<div className={styles.headline}> | ||
<div className={styles.title}> | ||
<h1>Optimize Feature Launches with Smart Rollout Techniques.<br/>From <span className={styles.green}>Progressive Rollouts</span> to <span className={styles.purple}>Sequential Releases.</span></h1> | ||
</div> | ||
</div> | ||
); | ||
} |
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,29 @@ | ||
.headline { | ||
margin: 5rem 0; | ||
padding: 7rem 0; | ||
text-align: center; | ||
font-style: italic; | ||
background-image: url( './bg.svg'); | ||
background-repeat: no-repeat; | ||
background-position: 50% 50%; | ||
color: var(--goff-headline-title); | ||
} | ||
|
||
.title h1{ | ||
opacity: 1; | ||
font-size: 2.9rem; | ||
} | ||
|
||
|
||
.headline svg { | ||
fill: var(--goff-headline-green); | ||
position: absolute; | ||
} | ||
|
||
.green { | ||
color: var(--goff-headline-green); | ||
} | ||
|
||
.purple { | ||
color: var(--goff-headline-purple); | ||
} |
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
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