-
Notifications
You must be signed in to change notification settings - Fork 24
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #2 from instruct-lab/copy-updates
updates to text
- Loading branch information
Showing
8 changed files
with
192 additions
and
106 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
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
78 changes: 78 additions & 0 deletions
78
src/components/ReleaseCycle/graphics/ReleaseCycleDiagram.module.scss
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,8 +1,86 @@ | ||
@use '@carbon/styles/scss/breakpoint' as *; | ||
@use '@carbon/type' as *; | ||
|
||
.releaseCycleDiagram { | ||
position: relative; | ||
display: flex; | ||
width: 100%; | ||
height: 100%; | ||
align-items: center; | ||
justify-content: center; | ||
|
||
.labelsWrapper { | ||
align-items: center; | ||
position: absolute; | ||
height: 100%; | ||
width: 100%; | ||
max-width: 559px; | ||
display: flex; | ||
} | ||
.labels { | ||
position: absolute; | ||
aspect-ratio: 559/446; | ||
width: 100%; | ||
|
||
> div { | ||
position: absolute; | ||
} | ||
|
||
.title { | ||
width: 100%; | ||
height: 100%; | ||
display: flex; | ||
justify-content: center; | ||
align-items: center; | ||
font-size: 210%; | ||
} | ||
|
||
.img1 { | ||
top: 22%; | ||
left: 50%; | ||
transform: translateX(-50%); | ||
max-width: 40%; | ||
text-align: center; | ||
} | ||
|
||
.img2 { | ||
top: 103%; | ||
right: 11.5%; | ||
max-width: 40%; | ||
text-align: center; | ||
transform: translateX(50%); | ||
} | ||
|
||
.img3 { | ||
top: 103%; | ||
left: 11.5%; | ||
max-width: 40%; | ||
text-align: center; | ||
transform: translateX(-50%); | ||
} | ||
|
||
.arrow1 { | ||
top: 40%; | ||
right: -4%; | ||
transform: rotate(90deg); | ||
max-width: 40%; | ||
text-align: center; | ||
} | ||
|
||
.arrow2 { | ||
bottom: 17%; | ||
left: 50%; | ||
transform: translateX(-50%); | ||
max-width: 40%; | ||
text-align: center; | ||
} | ||
|
||
.arrow3 { | ||
top: 40%; | ||
left: -8%; | ||
transform: rotate(-90deg); | ||
max-width: 40%; | ||
text-align: center; | ||
} | ||
} | ||
} |
159 changes: 75 additions & 84 deletions
159
src/components/ReleaseCycle/graphics/ReleaseCycleDiagram.tsx
Large diffs are not rendered by default.
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
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 |
---|---|---|
|
@@ -55,6 +55,7 @@ h2 { | |
|
||
p { | ||
@include type-style('heading-03', true); | ||
margin-bottom: 24px; | ||
} | ||
|
||
.cds--btn { | ||
|