snapshot: preserve branding foundation and platform owner split

This commit is contained in:
Md Bayazid Bostame
2026-03-26 11:43:54 +01:00
parent 8926d6860c
commit 51700cfa8b
22 changed files with 966 additions and 242 deletions

View File

@@ -362,6 +362,8 @@
gap: 10px;
align-items: flex-end;
flex-wrap: wrap;
position: relative;
padding-left: 16px;
}
.section-head h2 {
@@ -376,6 +378,32 @@
font-size: 13px;
}
.section-divider {
height: 1px;
margin: 24px 0 14px;
border-radius: 999px;
background: linear-gradient(90deg, rgba(0, 0, 120, 0.18), rgba(0, 0, 120, 0.05) 40%, rgba(140, 29, 29, 0.10));
}
.section-head::before {
content: "";
position: absolute;
left: 0;
top: 2px;
width: 4px;
height: 34px;
border-radius: 999px;
background: linear-gradient(180deg, rgba(0, 0, 120, 0.95), rgba(0, 0, 120, 0.30));
}
.section-head-platform::before {
background: linear-gradient(180deg, rgba(140, 29, 29, 0.90), rgba(140, 29, 29, 0.28));
}
.section-head-admin::before {
background: linear-gradient(180deg, rgba(159, 118, 33, 0.92), rgba(159, 118, 33, 0.28));
}
.apps-grid {
display: grid;
grid-template-columns: repeat(3, minmax(0, 1fr));