Skip to content
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

fix: Inconsistent Text Alignment #157

Closed
wants to merge 2 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion site/src/components/Faq/faqSection.style.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ const FaqSectionWrapper = styled.section`
margin: 2rem 0 0.5rem;
font-style: italic;
text-transform: capitalize;
text-align: center;
}
.accordion__item + .accordion__item {
border-color: transparent;
Expand Down Expand Up @@ -112,4 +113,4 @@ const FaqSectionWrapper = styled.section`
}
`;

export default FaqSectionWrapper;
export default FaqSectionWrapper;
2 changes: 1 addition & 1 deletion site/src/components/SignupForm/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -240,7 +240,7 @@ The Meshery Playground is connected to live Kubernetes cluster(s) and allows use
</div>
<div className='signup-text'>
<h2>Sign-up to receive a user account, entitled with perpetually free and full access the Playground environment.</h2>
<p>
<p style={{textAlign: 'center'}}>
Meshery maintainers will verify and process your request for access as quickly as possible. Due to the large influx of program participation requests, it may take some time before system access is granted. To help you familiarize with Meshery in the meantime, you will receive confirmation of your position in the queue.
</p>
<div className='desc-callout'>
Expand Down
Loading