We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 76ba432 + e94a65f commit 27c70f7Copy full SHA for 27c70f7
.changelog/2228.trivial.md
@@ -0,0 +1 @@
1
+Make BuildBanner non-sticky to fix on mobile
src/app/components/BuildBanner/index.tsx
@@ -20,7 +20,11 @@ export const BuildBanner: FC = () => {
20
: t('banner.buildPreview', { appTitle: getAppTitle() })
21
22
return (
23
- <Alert variant="warning-filled" sticky>
+ <Alert
24
+ variant="warning-filled"
25
+ // classes for [sticky] alert, without being sticky
26
+ className="rounded-none border-0 flex justify-center items-center [&>svg]:-mt-1"
27
+ >
28
{message}
29
</Alert>
30
)
0 commit comments