more styles
CI/CD Pipeline / Build and Push App Docker Image (push) Successful in 1m36s
CI/CD Pipeline / Build and Push PocketBase Docker Image (push) Successful in 8s
CI/CD Pipeline / Deploy to Kubernetes (push) Successful in 8m23s

This commit is contained in:
yohlo
2026-07-12 23:23:14 -07:00
parent e9040bb02f
commit e6c72a5789
6 changed files with 18 additions and 26 deletions
-2
View File
@@ -31,8 +31,6 @@ export function getRouter() {
defaultPreload: "intent",
defaultPreloadStaleTime: 60_000,
defaultErrorComponent: DefaultCatchBoundary,
scrollRestoration: true,
defaultViewTransition: true,
});
setupRouterSsrQueryIntegration({
+1 -1
View File
@@ -62,7 +62,7 @@ export const Route = createRootRouteWithContext<{
{ name: 'twitter:image', content: 'https://flexxon.app/favicon.png' },
{ name: 'mobile-web-app-capable', content: 'yes' },
{ name: 'apple-mobile-web-app-capable', content: 'yes' },
{ name: 'apple-mobile-web-app-status-bar-style', content: 'black-translucent' },
{ name: 'apple-mobile-web-app-status-bar-style', content: 'default' },
{ name: 'apple-mobile-web-app-title', content: 'FLXN' },
],
links: [
+5
View File
@@ -57,6 +57,11 @@ function SwipeableTabs({
embla?.scrollTo(index);
onTabChange?.(index, tabs[index]);
document
.getElementById("scroll-wrapper")
?.querySelector(".mantine-ScrollArea-viewport")
?.scrollTo({ top: 0 });
const tabLabel = tabs[index].label.toLowerCase();
if (typeof window !== "undefined") {
const url = new URL(window.location.href);
+6 -2
View File
@@ -1,5 +1,6 @@
import { AppShell } from '@mantine/core';
import { AppShell, Box } from '@mantine/core';
import { PropsWithChildren } from 'react';
import { useLocation } from '@tanstack/react-router';
import Header from './header';
import Navbar from './navbar';
import Pullable from './pullable';
@@ -11,6 +12,7 @@ import './route-transition.css';
const Layout: React.FC<PropsWithChildren> = ({ children }) => {
const { header, withPadding, fullWidth } = useRouterConfig();
const viewport = useVisualViewportSize();
const location = useLocation();
return (
<AppShell
@@ -48,7 +50,9 @@ const Layout: React.FC<PropsWithChildren> = ({ children }) => {
>
<Pullable>
<Page noPadding={!withPadding} fullWidth={fullWidth}>
{children}
<Box key={location.pathname} className="flxn-route-enter">
{children}
</Box>
</Page>
</Pullable>
</AppShell.Main>
@@ -1,24 +1,6 @@
@media (prefers-reduced-motion: no-preference) {
::view-transition-old(root) {
animation: flxn-route-fade-out 120ms ease-out both;
}
::view-transition-new(root) {
animation: flxn-route-fade-in 200ms ease-out both;
}
}
@media (prefers-reduced-motion: reduce) {
::view-transition-group(*),
::view-transition-old(*),
::view-transition-new(*) {
animation: none !important;
}
}
@keyframes flxn-route-fade-out {
to {
opacity: 0;
.flxn-route-enter {
animation: flxn-route-fade-in 180ms ease-out;
}
}
+4 -1
View File
@@ -23,5 +23,8 @@ export function setThemeColorMeta(color: string): void {
return;
}
metas.forEach((meta) => meta.setAttribute("content", color));
metas.forEach((meta) => {
meta.removeAttribute("media");
meta.setAttribute("content", color);
});
}