aboutsummaryrefslogtreecommitdiff
path: root/site/content/docs/5.3/examples/buttons/index.html
diff options
context:
space:
mode:
authorJulien Déramond <[email protected]>2024-08-02 10:18:29 +0200
committerGitHub <[email protected]>2024-08-02 10:18:29 +0200
commitac831aa4df8e817883c1510f74604ea67e26f179 (patch)
tree558b05d823d6bf40dcd8f38ecbea40ece9bcf25c /site/content/docs/5.3/examples/buttons/index.html
parent163f1f732c269c4493c72f44f920c4322700b2d5 (diff)
downloadbootstrap-ac831aa4df8e817883c1510f74604ea67e26f179.tar.xz
bootstrap-ac831aa4df8e817883c1510f74604ea67e26f179.zip
Docs: add `aria-hidden="true"` to decorative SVGs (#40686)
Diffstat (limited to 'site/content/docs/5.3/examples/buttons/index.html')
-rw-r--r--site/content/docs/5.3/examples/buttons/index.html4
1 files changed, 2 insertions, 2 deletions
diff --git a/site/content/docs/5.3/examples/buttons/index.html b/site/content/docs/5.3/examples/buttons/index.html
index 910c0d85e..54dbbe30a 100644
--- a/site/content/docs/5.3/examples/buttons/index.html
+++ b/site/content/docs/5.3/examples/buttons/index.html
@@ -40,11 +40,11 @@ body_class: ""
<div class="d-flex gap-2 justify-content-center py-5">
<button class="btn btn-primary d-inline-flex align-items-center" type="button">
Primary icon
- <svg class="bi ms-1" width="20" height="20"><use xlink:href="#arrow-right-short"/></svg>
+ <svg class="bi ms-1" width="20" height="20" aria-hidden="true"><use xlink:href="#arrow-right-short"/></svg>
</button>
<button class="btn btn-outline-secondary d-inline-flex align-items-center" type="button">
Secondary icon
- <svg class="bi ms-1" width="20" height="20"><use xlink:href="#arrow-right-short"/></svg>
+ <svg class="bi ms-1" width="20" height="20" aria-hidden="true"><use xlink:href="#arrow-right-short"/></svg>
</button>
</div>