diff options
author | Jeremy Davis <jeremy.davis@sonarsource.com> | 2022-10-13 13:36:58 +0200 |
---|---|---|
committer | sonartech <sonartech@sonarsource.com> | 2022-10-13 20:03:18 +0000 |
commit | 43fdff8ef4076653b7fdb0e5a2650b863e85da35 (patch) | |
tree | 39f5153e0c65776e12a4cb14bd227c2e0c8cb743 /server | |
parent | ac01f973cc49dd432c81805bf47763d106d364ff (diff) | |
download | sonarqube-43fdff8ef4076653b7fdb0e5a2650b863e85da35.tar.gz sonarqube-43fdff8ef4076653b7fdb0e5a2650b863e85da35.zip |
SONAR-17436 Bigger font size for SL connection page
Diffstat (limited to 'server')
-rw-r--r-- | server/sonar-web/src/main/js/app/components/SonarLintConnection.tsx | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/server/sonar-web/src/main/js/app/components/SonarLintConnection.tsx b/server/sonar-web/src/main/js/app/components/SonarLintConnection.tsx index 77cb25dc997..591a14d4ee3 100644 --- a/server/sonar-web/src/main/js/app/components/SonarLintConnection.tsx +++ b/server/sonar-web/src/main/js/app/components/SonarLintConnection.tsx @@ -190,10 +190,10 @@ export function SonarLintConnection({ currentUser }: Props) { <span className="sonarlint-token-value">{newToken.token}</span> <ClipboardButton className="big-spacer-left" copyValue={newToken.token} /> </div> - <div className="big-spacer-top"> + <div className="big huge-spacer-top"> <strong>{translate('sonarlint-connection.connection-error.next-steps')}</strong> </div> - <ol className="big-spacer-top big-spacer-bottom"> + <ol className="big big-spacer-top big-spacer-bottom"> <li>{translate('sonarlint-connection.connection-error.step1')}</li> <li>{translate('sonarlint-connection.connection-error.step2')}</li> </ol> @@ -214,10 +214,10 @@ export function SonarLintConnection({ currentUser }: Props) { <p className="big big-spacer-top big-spacer-bottom"> {translateWithParameters('sonarlint-connection.success.description', newToken.name)} </p> - <div className="big-spacer-top"> + <div className="big huge-spacer-top"> <strong>{translate('sonarlint-connection.success.last-step')}</strong> </div> - <div className="big-spacer-top big-spacer-bottom"> + <div className="big big-spacer-top big-spacer-bottom"> {translate('sonarlint-connection.success.step')} </div> </> |