-
Notifications
You must be signed in to change notification settings - Fork 46
[RTN-2065] feat(feedback): add multiple paragraphs in description #900
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
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 |
|---|---|---|
|
|
@@ -7,6 +7,18 @@ exports[`<Feedback /> should render correctly when not centered vertically 1`] = | |
| height: 64px; | ||
| } | ||
|
|
||
| .c5 { | ||
| margin-top: 16px; | ||
| display: -webkit-box; | ||
| display: -webkit-flex; | ||
| display: -ms-flexbox; | ||
| display: flex; | ||
| -webkit-flex-direction: column; | ||
| -ms-flex-direction: column; | ||
| flex-direction: column; | ||
| gap: 24px; | ||
| } | ||
|
|
||
| .c0 { | ||
| background-color: #FFFFFF; | ||
| width: 100%; | ||
|
|
@@ -20,15 +32,14 @@ exports[`<Feedback /> should render correctly when not centered vertically 1`] = | |
| align-items: flex-end; | ||
| } | ||
|
|
||
| .c5 { | ||
| .c6 { | ||
| margin: 0; | ||
| padding: 0; | ||
| font-size: 16px; | ||
| line-height: 24px; | ||
| color: #231B22; | ||
| font-family: Rubik; | ||
| font-weight: 400; | ||
| margin-top: 16px; | ||
|
Collaborator
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. Should this old snap be changed? I imagine the change shouldn't change the old interface (with only 1 paragraph) to avoid the risk of changing what we already have currently 🤔
Contributor
Author
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. Hi @flaviafmoraes 👋 |
||
| color: #6B6B78; | ||
| } | ||
|
|
||
|
|
@@ -50,7 +61,7 @@ exports[`<Feedback /> should render correctly when not centered vertically 1`] = | |
| font-weight: 500; | ||
| } | ||
|
|
||
| .c6 { | ||
| .c7 { | ||
| margin-top: 56px; | ||
| display: -webkit-box; | ||
| display: -webkit-flex; | ||
|
|
@@ -82,7 +93,7 @@ exports[`<Feedback /> should render correctly when not centered vertically 1`] = | |
| } | ||
|
|
||
| @media (min-width:769px) { | ||
| .c6 { | ||
| .c7 { | ||
| -webkit-flex-direction: row; | ||
| -ms-flex-direction: row; | ||
| flex-direction: row; | ||
|
|
@@ -117,15 +128,20 @@ exports[`<Feedback /> should render correctly when not centered vertically 1`] = | |
| > | ||
| Welcome to Yoga | ||
| </h1> | ||
| <p | ||
| <div | ||
| class="c5" | ||
| color="deep" | ||
| display="flex" | ||
| > | ||
| Enjoy your membership! | ||
| </p> | ||
| <p | ||
| class="c6" | ||
| color="deep" | ||
| > | ||
| Enjoy your membership! | ||
| </p> | ||
| </div> | ||
| </div> | ||
| <div | ||
| class="c6" | ||
| class="c7" | ||
| /> | ||
| </div> | ||
| </div> | ||
|
|
||
Uh oh!
There was an error while loading. Please reload this page.