style: restructure patient banner into compact two-row layout, minimize button footprints
Build Curio HMS / build-and-deploy (push) Successful in 44s
Details
Build Curio HMS / build-and-deploy (push) Successful in 44s
Details
This commit is contained in:
parent
5cdac4be0d
commit
c322cf37d5
|
|
@ -282,19 +282,21 @@
|
|||
.action-center {
|
||||
display: flex;
|
||||
gap: 0.5rem;
|
||||
background: #F8FAFC;
|
||||
padding: 0.5rem;
|
||||
border-radius: 12px;
|
||||
background: transparent;
|
||||
padding: 0;
|
||||
border-radius: 0;
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.btn-zen {
|
||||
height: 48px;
|
||||
padding: 0 1.2rem;
|
||||
border-radius: 12px;
|
||||
font-weight: 700;
|
||||
height: 36px;
|
||||
padding: 0 1rem;
|
||||
border-radius: 8px;
|
||||
font-weight: 600;
|
||||
font-size: 0.85rem;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 0.5rem;
|
||||
gap: 0.4rem;
|
||||
border: none;
|
||||
cursor: pointer;
|
||||
}
|
||||
|
|
@ -1315,24 +1317,26 @@
|
|||
/* --- WORLD-CLASS ZEN 4.0 ADD-ONS --- */
|
||||
.patient-banner-inner {
|
||||
background: white;
|
||||
padding: 0.75rem 1.5rem;
|
||||
border-radius: 16px;
|
||||
box-shadow: 0 2px 10px rgba(0,0,0,0.02);
|
||||
padding: 0.75rem 1.25rem;
|
||||
border-radius: 12px;
|
||||
box-shadow: 0 2px 8px rgba(0,0,0,0.02);
|
||||
border: 1px solid var(--border);
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
align-items: center;
|
||||
flex-direction: column;
|
||||
align-items: stretch;
|
||||
gap: 0.5rem;
|
||||
margin-bottom: 0.25rem;
|
||||
}
|
||||
|
||||
.patient-identity-row {
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
align-items: center;
|
||||
gap: 1rem;
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.patient-identity-row h1 {
|
||||
font-size: 1.75rem;
|
||||
font-size: 1.5rem;
|
||||
font-family: 'Outfit', sans-serif;
|
||||
color: var(--primary);
|
||||
margin: 0;
|
||||
|
|
@ -1340,8 +1344,8 @@
|
|||
|
||||
.patient-identity-row .allergy-tag {
|
||||
margin: 0;
|
||||
padding: 0.5rem 1rem;
|
||||
font-size: 0.9rem;
|
||||
padding: 0.35rem 0.75rem;
|
||||
font-size: 0.8rem;
|
||||
font-weight: 700;
|
||||
}
|
||||
|
||||
|
|
@ -1454,12 +1458,13 @@
|
|||
}
|
||||
|
||||
.lang-select {
|
||||
height: 48px;
|
||||
border-radius: 12px;
|
||||
height: 36px;
|
||||
border-radius: 8px;
|
||||
border: 1px solid var(--border);
|
||||
padding: 0 0.8rem;
|
||||
padding: 0 0.5rem;
|
||||
font-family: 'Inter', sans-serif;
|
||||
font-weight: 500;
|
||||
font-size: 0.85rem;
|
||||
}
|
||||
|
||||
.btn-sync {
|
||||
|
|
|
|||
|
|
@ -4,13 +4,13 @@
|
|||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>Dashboard | Curio</title>
|
||||
<link rel="stylesheet" href="globals.css?v=25">
|
||||
<link rel="stylesheet" href="index.css?v=25">
|
||||
<link rel="stylesheet" href="dashboard.css?v=25">
|
||||
<link rel="stylesheet" href="globals.css?v=26">
|
||||
<link rel="stylesheet" href="index.css?v=26">
|
||||
<link rel="stylesheet" href="dashboard.css?v=26">
|
||||
<link rel="preconnect" href="https://fonts.googleapis.com">
|
||||
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
|
||||
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Outfit:wght@500;600;700&display=swap" rel="stylesheet">
|
||||
<script src="tenantLoader.js?v=25"></script>
|
||||
<script src="tenantLoader.js?v=26"></script>
|
||||
</head>
|
||||
<body class="dashboard-body">
|
||||
<div class="sidebar-mobile-toggle" onclick="toggleSidebar()">☰ Menu</div>
|
||||
|
|
@ -532,6 +532,6 @@
|
|||
</div>
|
||||
|
||||
</main>
|
||||
<script src="dashboard.js?v=25"></script>
|
||||
<script src="dashboard.js?v=26"></script>
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
|||
Loading…
Reference in New Issue