diff options
| author | Naman Sood <mail@nsood.in> | 2023-12-13 13:38:38 -0500 |
|---|---|---|
| committer | Naman Sood <mail@nsood.in> | 2024-10-24 08:58:50 -0500 |
| commit | b190e3140c8269a1be69c04b5c75e158d97c2ebf (patch) | |
| tree | 1b2d6ce5bb847c6dc46ae5628a7fb0f32dd786f9 | |
| parent | ad0a21cf0b7ad6fad46234fe41aa1d0cec6e8cb7 (diff) | |
| download | tailscale-naman/web-client-update-fixes.tar.xz tailscale-naman/web-client-update-fixes.zip | |
client/web: fix UI bug in self-update cardnaman/web-client-update-fixes
Updates #10187. The other cards had been updated to use a slightly different
styling, but this one had not.
Signed-off-by: Naman Sood <mail@nsood.in>
| -rw-r--r-- | client/web/src/components/update-available.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/client/web/src/components/update-available.tsx b/client/web/src/components/update-available.tsx index 763007de8..6725ffdb0 100644 --- a/client/web/src/components/update-available.tsx +++ b/client/web/src/components/update-available.tsx @@ -15,7 +15,7 @@ export function UpdateAvailableNotification({ const [, setLocation] = useLocation() return ( - <Card> + <Card noPadding className="-mx-5 p-5 details-card"> <h2 className="mb-2"> Update available{" "} {details.LatestVersion && `(v${details.LatestVersion})`} |
