refactor(tui): migrate dialog views to V2 themes (#37516)
This commit is contained in:
parent
bce9c639d1
commit
677526d72e
10 changed files with 86 additions and 81 deletions
|
|
@ -2,7 +2,7 @@ import { useTheme } from "../context/theme"
|
|||
import { Spinner } from "./spinner"
|
||||
|
||||
export function Reconnecting() {
|
||||
const theme = useTheme().theme
|
||||
const { themeV2 } = useTheme()
|
||||
|
||||
return (
|
||||
<box
|
||||
|
|
@ -12,12 +12,12 @@ export function Reconnecting() {
|
|||
right={0}
|
||||
bottom={0}
|
||||
left={0}
|
||||
backgroundColor={theme.background}
|
||||
backgroundColor={themeV2.background()}
|
||||
alignItems="center"
|
||||
justifyContent="center"
|
||||
>
|
||||
<box width={62} maxWidth="90%" flexDirection="column" alignItems="center" gap={1}>
|
||||
<Spinner color={theme.textMuted}>Waiting for background service...</Spinner>
|
||||
<Spinner color={themeV2.text.subdued()}>Waiting for background service...</Spinner>
|
||||
</box>
|
||||
</box>
|
||||
)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue