MED-105: create analysis results page

This commit is contained in:
Danel Kungla
2025-07-15 17:12:52 +03:00
parent 0af3823148
commit 87dfcf55e6
19 changed files with 6213 additions and 25 deletions

View File

@@ -37,16 +37,12 @@ function PageWithSidebar(props: PageProps) {
<div
className={
props.contentContainerClassName ??
'mx-auto flex h-screen w-full flex-col overflow-y-auto bg-inherit'
'mx-auto flex h-screen w-full flex-col bg-inherit'
}
>
{MobileNavigation}
<div
className={
'bg-background flex flex-1 flex-col overflow-y-auto px-4 lg:px-0'
}
>
<div className={'bg-background flex flex-1 flex-col px-4 lg:px-0'}>
{Children}
</div>
</div>
@@ -75,7 +71,7 @@ function PageWithHeader(props: PageProps) {
const { Navigation, Children, MobileNavigation } = getSlotsFromPage(props);
return (
<div className={cn('flex h-screen flex-1 flex-col z-900', props.className)}>
<div className={cn('z-900 flex h-screen flex-1 flex-col', props.className)}>
<div
className={
props.contentContainerClassName ?? 'flex flex-1 flex-col space-y-4'
@@ -83,7 +79,7 @@ function PageWithHeader(props: PageProps) {
>
<div
className={cn(
'bg-bg-background border-1 light:border-border dark:border-border dark:shadow-primary/10 flex h-15 items-center justify-between px-4 py-1 lg:justify-start lg:shadow-xs border-b',
'bg-bg-background light:border-border dark:border-border dark:shadow-primary/10 flex h-15 items-center justify-between border-1 border-b px-4 py-1 lg:justify-start lg:shadow-xs',
{
'sticky top-0 z-1000 backdrop-blur-md': props.sticky ?? true,
},