diff --git a/site/src/components/core/buttons/button.module.scss b/site/src/components/core/buttons/button.module.scss
index 73283f490..71bb70f7a 100644
--- a/site/src/components/core/buttons/button.module.scss
+++ b/site/src/components/core/buttons/button.module.scss
@@ -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;
diff --git a/site/src/components/core/layout/layout.js b/site/src/components/core/layout/layout.js
index 3dd3d3b42..41b0ee1f6 100644
--- a/site/src/components/core/layout/layout.js
+++ b/site/src/components/core/layout/layout.js
@@ -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';
diff --git a/site/src/components/enterprise/features/features.js b/site/src/components/enterprise/features/features.js
index 12661721a..a2e82f6f6 100644
--- a/site/src/components/enterprise/features/features.js
+++ b/site/src/components/enterprise/features/features.js
@@ -21,7 +21,7 @@ export const EnterpriseFeatures = ({lang}) => {
id="enterprise.features.introduction"
values={{
communityLink: (
-
+
That being said, for our{' '} - + enterprise {' '} 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 @@ -69,7 +68,7 @@ const FaqPage = (props) => {
You can't (but we do understand that you might wish to if you are a{' '} - + company ). diff --git a/site/src/themes/links.scss b/site/src/themes/links.scss new file mode 100644 index 000000000..1e5f2f2cc --- /dev/null +++ b/site/src/themes/links.scss @@ -0,0 +1,5 @@ +main { + a { + text-decoration: underline; + } +}