Compare commits

...

3 Commits

Author SHA1 Message Date
db4803d463 fix sidebar width change during toggling between tabs. 2026-06-24 17:09:06 +03:30
740f6d9cc9 test disable push on master 2026-06-23 15:54:13 +03:30
36cf991684 Merge pull request 'feature/tab-warning-flag' (#44) from feature/tab-warning-flag into master
All checks were successful
Registry — build, push, deploy / temp-success (push) Successful in 0s
Reviewed-on: http://178.131.50.201:3000/admin/dyolink/pulls/44
2026-06-22 14:44:19 +03:30
5 changed files with 5 additions and 5 deletions

View File

@@ -1,6 +1,6 @@
# Dyolink # Dyolink
Monorepo: **NestJS** backend (`backend/`), **Next.js** frontend (`frontend/`), **Docker** stack under `infrastructure/`. Monorepo: **NestJS** backend (`backend/`), **Next.js** frontend (`frontend/`), **Docker** stack under `infrastructure/`..
Local development: see **`backend/README.md`** and **`frontend/README.md`**. Local development: see **`backend/README.md`** and **`frontend/README.md`**.

View File

@@ -53,7 +53,7 @@ export function InvitationHistoryDialog({
return ( return (
<div className="fixed inset-0 z-50 flex items-center justify-center p-4 bg-black/50"> <div className="fixed inset-0 z-50 flex items-center justify-center p-4 bg-black/50">
<div <div
className="w-full max-w-[min(56rem,calc(100vw-17rem))] max-h-[90vh] overflow-y-auto rounded-[var(--radius-md)] border border-border bg-background-secondary p-6 shadow-xl space-y-4" className="w-full max-w-[min(56rem,calc(100vw-15rem))] max-h-[90vh] overflow-y-auto rounded-[var(--radius-md)] border border-border bg-background-secondary p-6 shadow-xl space-y-4"
role="dialog" role="dialog"
aria-modal="true" aria-modal="true"
aria-labelledby="invitation-history-title" aria-labelledby="invitation-history-title"

View File

@@ -107,7 +107,7 @@ export function CreatePatientModal({
}} }}
> >
<div <div
className="surface-card w-full max-w-[min(56rem,calc(100vw-17rem))] p-5 space-y-4 shadow-xl" className="surface-card w-full max-w-[min(56rem,calc(100vw-15rem))] p-5 space-y-4 shadow-xl"
role="dialog" role="dialog"
aria-modal="true" aria-modal="true"
aria-labelledby="create-patient-dialog-title" aria-labelledby="create-patient-dialog-title"

View File

@@ -59,7 +59,7 @@ function Sidebar() {
); );
return ( return (
<aside className="w-64 bg-background-secondary/90 border-r border-border text-text-primary flex flex-col"> <aside className="w-56 min-w-56 shrink-0 bg-background-secondary/90 border-r border-border text-text-primary flex flex-col">
<div className="h-[71px] px-4 flex items-center"> <div className="h-[71px] px-4 flex items-center">
<h1 className="text-lg font-medium tracking-tight">{tCommon('appName')}</h1> <h1 className="text-lg font-medium tracking-tight">{tCommon('appName')}</h1>
</div> </div>

View File

@@ -66,7 +66,7 @@ export function TreatmentPreviewDialog({
return ( return (
<div className="fixed inset-0 z-50 flex items-center justify-center p-4 bg-black/50"> <div className="fixed inset-0 z-50 flex items-center justify-center p-4 bg-black/50">
<div <div
className="w-full max-w-[min(56rem,calc(100vw-17rem))] max-h-[90vh] overflow-y-auto rounded-[var(--radius-md)] border border-border bg-background-secondary p-6 shadow-xl space-y-4" className="w-full max-w-[min(56rem,calc(100vw-15rem))] max-h-[90vh] overflow-y-auto rounded-[var(--radius-md)] border border-border bg-background-secondary p-6 shadow-xl space-y-4"
role="dialog" role="dialog"
aria-modal="true" aria-modal="true"
aria-labelledby="treatment-preview-title" aria-labelledby="treatment-preview-title"