Skip to content

Commit ec35f93

Browse files
committed
update font size
1 parent a08eceb commit ec35f93

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

apps/remix-ide/src/app/tabs/locales/en/settings.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,6 @@
3939
"settings.analyticsInRemix": "Analytics in Remix IDE",
4040
"settings.copilot": "Solidity copilot - Alpha",
4141
"settings.copilot.activate": "Load & Activate copilot",
42-
"settings.copilot.max_new_tokens": "Maximum amount of new words to generate",
42+
"settings.copilot.max_new_tokens": "Maximum number of words to generate",
4343
"settings.copilot.temperature": "Temperature"
4444
}

libs/remix-ui/settings/src/lib/remix-ui-settings.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -466,7 +466,7 @@ export const RemixUiSettings = (props: RemixUiSettingsProps) => {
466466
<div className="text-secondary mb-0 h6">
467467
<div>
468468
<div className="mb-1">
469-
<label className={`align-middle ${getTextClass('settings/copilot/suggest/max_new_tokens')}`} htmlFor="copilot-activate">
469+
<label className={`form-check-label align-middle ${getTextClass('settings/copilot/suggest/max_new_tokens')}`} htmlFor="copilot-activate">
470470
<FormattedMessage id="settings.copilot.max_new_tokens" /> - <span>{copilotMaxnewToken}</span>
471471
</label>
472472
<input onChange={onchangeCopilotMaxNewToken} id="copilot-max-new-token" value={copilotMaxnewToken} min='1' max='150' type="range" className="custom-range" />
@@ -479,7 +479,7 @@ export const RemixUiSettings = (props: RemixUiSettingsProps) => {
479479
<div className="text-secondary mb-0 h6">
480480
<div>
481481
<div className="mb-1">
482-
<label className={`align-middle ${getTextClass('settings/copilot/suggest/temperature')}`} htmlFor="copilot-activate">
482+
<label className={`form-check-label align-middle ${getTextClass('settings/copilot/suggest/temperature')}`} htmlFor="copilot-activate">
483483
<FormattedMessage id="settings.copilot.temperature" /> - <span>{copilotTemperatureValue / 100}</span>
484484
</label>
485485
<input onChange={onchangeCopilotTemperature} id="copilot-temperature" value={copilotTemperatureValue} min='0' max='100' type="range" className="custom-range" />

0 commit comments

Comments
 (0)