snipshare
@chynna
Member since January 28, 2026
2 pastes ยท 0 collections
/* Holy Grail Layout */ .holy-grail { display: grid; grid-template: "header header header" 64px
// Deep partial type DeepPartial<T> = T extends object ? { [K in keyof T]?: DeepPartial<T[K]> } : T;