From 1b6c29068d382360b398ce875bcfcb8dc26c9119 Mon Sep 17 00:00:00 2001 From: Matt Corallo Date: Tue, 16 Jul 2024 14:24:18 +0000 Subject: [PATCH] Make sure the clipboard logo never cuts --- clipboard-svg.js | 4 ++-- index.html | 3 +++ 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/clipboard-svg.js b/clipboard-svg.js index 3704aa8..2edc8b8 100644 --- a/clipboard-svg.js +++ b/clipboard-svg.js @@ -2,5 +2,5 @@ // Copyright (c) 2019-2024 The Bootstrap Authors // Licensed under the MIT license, see https://github.com/twbs/icons/blob/main/LICENSE -export const CLIPBOARD_SVG = ''; -export const CLIPBOARD_CHECK_SVG =''; +export const CLIPBOARD_SVG = ''; +export const CLIPBOARD_CHECK_SVG =''; diff --git a/index.html b/index.html index 4369287..176a583 100644 --- a/index.html +++ b/index.html @@ -160,6 +160,9 @@ float: right; cursor: pointer; } + .clipboard-logo { + height: 17px; + } @media screen and (min-width: 768px) { body { display: flex; -- 2.39.5