diff options
| author | Mark Otto <[email protected]> | 2023-03-07 21:46:50 -0800 |
|---|---|---|
| committer | Mark Otto <[email protected]> | 2023-03-07 21:53:05 -0800 |
| commit | 3cec38c368346594aefad5d6185c599c670b1c02 (patch) | |
| tree | d98f856114cea8c13d4e761084677d44f60c8b0d | |
| parent | 039f3d1c8bd1653d1fde5d14f5194e30e33c3c80 (diff) | |
| download | bootstrap-3cec38c368346594aefad5d6185c599c670b1c02.tar.xz bootstrap-3cec38c368346594aefad5d6185c599c670b1c02.zip | |
Fixes click area for header example snippet
| -rw-r--r-- | site/content/docs/5.3/examples/headers/index.html | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/site/content/docs/5.3/examples/headers/index.html b/site/content/docs/5.3/examples/headers/index.html index 6262025e8..a0c87f67e 100644 --- a/site/content/docs/5.3/examples/headers/index.html +++ b/site/content/docs/5.3/examples/headers/index.html @@ -68,9 +68,11 @@ body_class: "" <div class="container"> <header class="d-flex flex-wrap align-items-center justify-content-center justify-content-md-between py-3 mb-4 border-bottom"> - <a href="/" class="d-flex align-items-center col-md-3 mb-2 mb-md-0 link-body-emphasis text-decoration-none"> - <svg class="bi me-2" width="40" height="32" role="img" aria-label="Bootstrap"><use xlink:href="#bootstrap"/></svg> - </a> + <div class="col-md-3 mb-2 mb-md-0"> + <a href="/" class="d-inline-flex link-body-emphasis text-decoration-none"> + <svg class="bi" width="40" height="32" role="img" aria-label="Bootstrap"><use xlink:href="#bootstrap"/></svg> + </a> + </div> <ul class="nav col-12 col-md-auto mb-2 justify-content-center mb-md-0"> <li><a href="#" class="nav-link px-2 link-secondary">Home</a></li> |
