diff --git a/better-xcloud.user.js b/better-xcloud.user.js
index 604bb6e..9debbde 100644
--- a/better-xcloud.user.js
+++ b/better-xcloud.user.js
@@ -2735,7 +2735,7 @@ const Icon = {
COPY: '',
TRASH: '',
CURSOR_TEXT: '',
- BOOK: '',
+ QUESTION: '',
REMOTE_PLAY: '',
@@ -7221,7 +7221,7 @@ div[class^=HUDButton-module__hiddenContainer] ~ div:not([class^=HUDButton-module
.bx-button span {
display: inline-block;
- height: 32px;
+ height: 30px;
line-height: 32px;
vertical-align: middle;
color: #fff;
@@ -8914,7 +8914,7 @@ function injectSettingsButton($parent) {
'href': SCRIPT_HOME,
'target': '_blank',
}, 'Better xCloud ' + SCRIPT_VERSION),
- createButton({icon: Icon.BOOK, label: __('help'), url: 'https://better-xcloud.github.io/features/'}),
+ createButton({icon: Icon.QUESTION, label: __('help'), url: 'https://better-xcloud.github.io/features/'}),
)
);
$updateAvailable = CE('a', {
@@ -9768,7 +9768,7 @@ function setupQuickSettingsBar() {
for (const settingGroup of settingTab.items) {
$group.appendChild(CE('h2', {},
CE('span', {}, settingGroup.label),
- settingGroup.help_url && createButton({icon: Icon.BOOK, isGhost: true, url: settingGroup.help_url, title: __('help')}),
+ settingGroup.help_url && createButton({icon: Icon.QUESTION, isGhost: true, url: settingGroup.help_url, title: __('help')}),
));
if (settingGroup.note) {
if (typeof settingGroup.note === 'string') {