Skip to content
This repository was archived by the owner on Feb 6, 2024. It is now read-only.
Merged
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
2 changes: 2 additions & 0 deletions site/src/components/core/buttons/button.module.scss
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@
margin: 0.25rem 0;
padding: 0 16px;

text-decoration: none;

@media (min-width: 576px) {
margin: 0.45rem 0;
padding: 0 26px;
Expand Down
1 change: 1 addition & 0 deletions site/src/components/core/layout/layout.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ import '../../../themes/fonts.scss';
import '../../../themes/theme.scss';
import '../../../themes/main.scss';
import '../../../themes/input.scss';
import '../../../themes/links.scss';
import '../../../themes/variables.scss';

import SEO from '../seo/seo';
Expand Down
2 changes: 1 addition & 1 deletion site/src/components/enterprise/features/features.js
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ export const EnterpriseFeatures = ({lang}) => {
id="enterprise.features.introduction"
values={{
communityLink: (
<Link to={`/${lang}/features/`} style={{textDecoration: 'underline'}}>
<Link to={`/${lang}/features/`}>
<FormattedMessage id="enterprise.community.link" />
</Link>
),
Expand Down
2 changes: 1 addition & 1 deletion site/src/components/features/features/features.js
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ export const ListFeatures = ({lang}) => {
id="features.enterprise.only.notice"
values={{
organizationsLink: (
<Link to={`/${lang}/enterprise/`} style={{textDecoration: 'underline'}}>
<Link to={`/${lang}/enterprise/`}>
<FormattedMessage id="features.enterprise.organizations.link" />
</Link>
),
Expand Down
5 changes: 2 additions & 3 deletions site/src/components/pricing/plan/plan.js
Original file line number Diff line number Diff line change
Expand Up @@ -41,8 +41,7 @@ export const Plan = ({lang}) => {
sponsorshipLink: (
<a
href="https://opencollective.com/deckdeckgo#category-CONTRIBUTE"
rel="noopener noreferrer"
style={{textDecoration: 'underline'}}>
rel="noopener noreferrer">
<FormattedMessage id="pricing.community.sponsorship" />
</a>
),
Expand Down Expand Up @@ -91,7 +90,7 @@ export const Plan = ({lang}) => {
id="pricing.community.feature.more"
values={{
featuresLink: (
<Link to={`/${lang}/features/`} style={{textDecoration: 'underline'}}>
<Link to={`/${lang}/features/`}>
<FormattedMessage id="pricing.community.features" />
</Link>
),
Expand Down
3 changes: 1 addition & 2 deletions site/src/components/pricing/try/try.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,7 @@ export const Try = () => {
tryLink: (
<a
href="https://app.deckdeckgo.com/editor"
rel="noopener noreferrer"
style={{textDecoration: 'underline'}}>
rel="noopener noreferrer">
<FormattedMessage id="pricing.try.link" />
</a>
),
Expand Down
7 changes: 3 additions & 4 deletions site/src/pages/faq/index.en.js
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,7 @@ const FaqPage = (props) => {
<a
href="https://dev.to/daviddalbusco/we-are-developing-an-open-source-editor-for-presentations-1bng"
target="_blank"
rel="noopener noreferrer"
style={{textDecoration: 'underline'}}>
rel="noopener noreferrer">
article
</a>{' '}
to present our project and ourselves, you might find more answers in it if you wish to have a more concrete answer.
Expand Down Expand Up @@ -58,7 +57,7 @@ const FaqPage = (props) => {

<p>
That being said, for our{' '}
<Link to="/en/enterprise/" style={{textDecoration: 'underline'}}>
<Link to="/en/enterprise/">
enterprise
</Link>{' '}
we do offer templates and options that match their CI/CD. In addition, we are in the making to open our online editor to custom users and community
Expand All @@ -69,7 +68,7 @@ const FaqPage = (props) => {

<p>
You can't (but we do understand that you might wish to if you are a{' '}
<Link to="/en/enterprise/" style={{textDecoration: 'underline'}}>
<Link to="/en/enterprise/">
company
</Link>
).
Expand Down
5 changes: 5 additions & 0 deletions site/src/themes/links.scss
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
main {
a {
text-decoration: underline;
}
}