mirror of
https://github.com/supabase/supabase.git
synced 2026-07-24 08:30:05 -04:00
b6b9b786df
* DRAFT: creating some draft docs for PaaS * adds a link in the sidebar * fix images * refactor all images * add changes for functions * more updates * Adds more docs * cleaning up the project launch section * add PaaS project transfer instructions * Apply suggestions from code review Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> * updates * add docs on named restore points * remove note about enabling physical backups on v2 * update project claim flow with latest api endpoint * update docs * Update apps/docs/content/guides/integrations/platform-as-a-service.mdx Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> * Update apps/docs/content/guides/integrations/platform-as-a-service.mdx Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> * updates * updates * updates * updates * updates * fix mgmt api links * remove "new" from api keys * updates * updates * add hyperlink ai builder solutions page * feat: Supabase for Platforms launch post # Conflicts: # apps/www/public/rss.xml # Conflicts: # apps/www/public/rss.xml * add blog assets * update marketing copy on ai builder solutions page * docs updates * fix scroll in partnership section hyperlink * format * updates * add words to spelling allowlist * updates * updates --------- Co-authored-by: Copple <[email protected]> Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
31 lines
710 B
CSS
31 lines
710 B
CSS
.features-grid {
|
|
grid-template-areas:
|
|
'mgmt-api postgres'
|
|
'branching pricing ';
|
|
}
|
|
|
|
@media (min-width: 1280px) {
|
|
.features-grid {
|
|
grid-template-areas:
|
|
'mgmt-api mgmt-api postgres'
|
|
'branching pricing postgres';
|
|
}
|
|
}
|
|
|
|
.features-grid-extended {
|
|
grid-template-areas:
|
|
'postgres mgmt-api'
|
|
'pricing branching'
|
|
'claim-flow platform-kit'
|
|
'pico-instances pico-instances';
|
|
}
|
|
|
|
@media (min-width: 1280px) {
|
|
.features-grid-extended {
|
|
grid-template-areas:
|
|
'postgres mgmt-api mgmt-api'
|
|
'pricing branching claim-flow'
|
|
'platform-kit pico-instances pico-instances';
|
|
}
|
|
}
|