From 1471547bcdce4c6ad4ca2e97422a6627d2876bdc Mon Sep 17 00:00:00 2001 From: pengzhanbo Date: Fri, 17 Oct 2025 13:12:35 +0800 Subject: [PATCH] fix(theme): fix the layout misalignment of the `` fontawesome icon --- theme/src/client/components/VPButton.vue | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/theme/src/client/components/VPButton.vue b/theme/src/client/components/VPButton.vue index 46d81804..a8ebd949 100644 --- a/theme/src/client/components/VPButton.vue +++ b/theme/src/client/components/VPButton.vue @@ -152,6 +152,11 @@ function linkTo(e: Event) { height: 1.2em; } +.vp-button .button-content :deep(.vp-icon.fontawesome) { + width: initial; + height: initial; +} + .vp-button + .vp-button { margin-left: 1em; }