mirror of
https://github.com/netbirdio/netbird.git
synced 2026-09-20 13:49:07 +02:00
fix auto size detection
This commit is contained in:
@@ -86,10 +86,10 @@ export default function UpdateInProgressDialog() {
|
||||
{isError ? (
|
||||
<SquareIcon
|
||||
icon={XCircle}
|
||||
className={"mt-4 bg-red-500 [&_svg]:text-white"}
|
||||
className={"bg-red-500 [&_svg]:text-white"}
|
||||
/>
|
||||
) : (
|
||||
<SquareIcon icon={Loader2} className={"mt-4 [&_svg]:animate-spin"} />
|
||||
<SquareIcon icon={Loader2} className={"[&_svg]:animate-spin"} />
|
||||
)}
|
||||
|
||||
<div className={"flex flex-col items-center gap-2"}>
|
||||
|
||||
@@ -58,7 +58,7 @@ export default function LoginWaitingForBrowserDialog() {
|
||||
<ConfirmDialog ref={contentRef}>
|
||||
<SquareIcon
|
||||
icon={Loader2}
|
||||
className={"mt-4 [&_svg]:animate-spin"}
|
||||
className={"[&_svg]:animate-spin"}
|
||||
/>
|
||||
|
||||
<div className={"flex flex-col items-center gap-2"}>
|
||||
|
||||
@@ -121,7 +121,7 @@ export default function SessionAboutToExpireDialog() {
|
||||
|
||||
return (
|
||||
<ConfirmDialog ref={contentRef}>
|
||||
<SquareIcon icon={ClockIcon} className={"mt-4"} />
|
||||
<SquareIcon icon={ClockIcon} />
|
||||
|
||||
<div className={"flex flex-col items-center gap-1"}>
|
||||
<DialogHeading>
|
||||
|
||||
@@ -29,7 +29,7 @@ export default function SessionExpiredDialog() {
|
||||
|
||||
return (
|
||||
<ConfirmDialog ref={contentRef}>
|
||||
<SquareIcon icon={AlertCircleIcon} className={"mt-4"} />
|
||||
<SquareIcon icon={AlertCircleIcon} />
|
||||
|
||||
<div className={"flex flex-col items-center gap-1"}>
|
||||
<DialogHeading>{t("sessionExpired.title")}</DialogHeading>
|
||||
|
||||
Reference in New Issue
Block a user