Skip to content

Commit

Permalink
readability issues...again
Browse files Browse the repository at this point in the history
  • Loading branch information
Leonor2004 committed Nov 27, 2024
1 parent 48e1933 commit 3b6e49f
Show file tree
Hide file tree
Showing 3 changed files with 23 additions and 17 deletions.
20 changes: 10 additions & 10 deletions popup/components/controls/SwitchControl.js
Original file line number Diff line number Diff line change
Expand Up @@ -35,16 +35,16 @@ function SwitchControl({
<label htmlFor={storageKey} className="text-[15px] font-bold">
{label}
{tooltipContent && (
<span className="question-icon">
<RiQuestionLine data-tooltip-id={tooltipId} />
<Tooltip
className="tooltip"
id={tooltipId}
content={tooltipContent}
place="top"
/>
</span>
)}
<span className="question-icon">
<RiQuestionLine data-tooltip-id={tooltipId} />
<Tooltip
className="tooltip"
id={tooltipId}
content={tooltipContent}
place="top"
/>
</span>
)}
</label>
<StyledSwitch
onCheckedChange={async (checked) => {
Expand Down
9 changes: 6 additions & 3 deletions popup/components/sections/Features.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,12 @@ const Layout = () => (
storageKey="autoLogin"
tooltipContent={
<>
Relogin automático quando a sessão for perdida. <br />
Depois de ativada a opção, é necessário repetir o login. <br />
Atenção, esta opção apenas funciona com login por <br />
Relogin automático quando a sessão for perdida.
<br />
Depois de ativada a opção, é necessário repetir o login.
<br />
Atenção, esta opção apenas funciona com login por
<br />
credenciais e não como autenticação federada.
</>
}
Expand Down
11 changes: 7 additions & 4 deletions popup/components/sections/Layout.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,8 @@ const Layout = () => (
storageKey="navbar"
tooltipContent={
<>
Ativar navegação superior e esconder<br />
Ativar navegação superior e esconder
<br />
barra de navegação da esquerda.
</>
}
Expand All @@ -19,7 +20,8 @@ const Layout = () => (
storageKey="shortcuts"
tooltipContent={
<>
Esconder a opção dos atalhos <br />da barra lateral direita.
Esconder a opção dos atalhos <br />
da barra lateral direita.
</>
}
tooltipId="shortcuts-tooltip"
Expand All @@ -29,9 +31,10 @@ const Layout = () => (
storageKey="font"
tooltipContent={
<>
Alterar a fonte do <br />texto para Roboto.
Alterar a fonte do <br />
texto para Roboto.
</>
}
}
tooltipId="font-tooltip"
/>
</Section>
Expand Down

0 comments on commit 3b6e49f

Please sign in to comment.