diff --git a/docs/components/ButtonView.jsx b/docs/components/ButtonView.jsx
index 473201191..3c552a0f5 100644
--- a/docs/components/ButtonView.jsx
+++ b/docs/components/ButtonView.jsx
@@ -44,13 +44,21 @@ export default function ButtonView() {
+
- Here is a with no
+ Here is a . By default it has no
margin/padding.
-
- Better suited for inline links than the
+
+ + Another attribute of is that they match + the font size of the DOM element they are contained in. + +
++ This makes plain links ideal for inline links, unlike the regular , which doesn't - automatically match the text around it. + automatically match the text around it and has padding.
@@ -191,4 +199,5 @@ export default function ButtonView() { ButtonView.cssClass = { CONTAINER: "ButtonView", + LARGE_FONT_LINK_PLAIN_CONTAINER: "ButtonView--largeFontLinkPlainContainer", }; diff --git a/docs/components/ButtonView.less b/docs/components/ButtonView.less index a809cea79..97d633ee2 100644 --- a/docs/components/ButtonView.less +++ b/docs/components/ButtonView.less @@ -7,4 +7,8 @@ .margin--right--m; } } + + .ButtonView--largeFontLinkPlainContainer { + .text--large; + } }