Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Minor fixes #860

Merged
merged 1 commit into from
May 20, 2024
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
8 changes: 4 additions & 4 deletions content/components/web/tooltips/_index.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,16 +21,16 @@ A tooltip is a popup that displays information related to an element when the el
<div style="max-width: max-content">
<div class="guide-sample">
<div class="btn-group-vertical">
<button id="tooltipExample" class="btn btn-icon-only btn-outline-secondary" data-bs-toggle="tooltip" data-bs-placement="right" title="Zoom in">
<button type="button" id="tooltipExample" class="btn btn-icon-only btn-outline-secondary" data-bs-toggle="tooltip" data-bs-placement="right" title="Zoom in">
<i class="modus-icons notranslate" aria-hidden="true">zoom_in</i>
</button>
<button class="btn btn-icon-only btn-outline-secondary" data-bs-toggle="tooltip" data-bs-placement="right" title="Zoom out">
<button type="button" class="btn btn-icon-only btn-outline-secondary" data-bs-toggle="tooltip" data-bs-placement="right" title="Zoom out">
<i class="modus-icons notranslate" aria-hidden="true">zoom_out</i>
</button>
<button class="btn btn-icon-only btn-outline-secondary" data-bs-toggle="tooltip" data-bs-placement="right" title="Expand">
<button type="button" class="btn btn-icon-only btn-outline-secondary" data-bs-toggle="tooltip" data-bs-placement="right" title="Expand">
<i class="modus-icons notranslate" aria-hidden="true">expand</i>
</button>
<button class="btn btn-icon-only btn-outline-secondary" data-bs-toggle="tooltip" data-bs-placement="right" title="Toggle layers">
<button type="button" class="btn btn-icon-only btn-outline-secondary" data-bs-toggle="tooltip" data-bs-placement="right" title="Toggle layers">
<i class="modus-icons notranslate" aria-hidden="true">map</i>
</button>
</div>
Expand Down
1 change: 0 additions & 1 deletion layouts/partials/meta.html
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,6 @@

<!-- OpenGraph Meta tags using Hugo's own built-in template -->
{{ template "_internal/opengraph.html" . }}
<meta property="og:locale" content="en_US">

<!-- no need to define additional Twitter card meta tags as fallback to Open Graph -->
<!-- https://developer.twitter.com/en/docs/tweets/optimize-with-cards/guides/getting-started#twitter-cards-and-open-graph -->
Expand Down
Loading