mirror of
https://github.com/supabase/supabase.git
synced 2026-05-07 17:30:25 -04:00
afd690ada5
This PR migrates all tailwind configs in the apps to be CSS configs. They import a shared CSS Tailwind config from the `config` package (which in turns imports the old JS config). The shared JS config will be migrated to CSS in a followup PR. <!-- This is an auto-generated comment: release notes by coderabbit.ai --> ## Summary by CodeRabbit * **Chores** * Centralized Tailwind into a config-driven entrypoint and updated the app build flow to use the new build step; many apps now import unified global styles. * **Style** * Migrated global styles to a Tailwind v4-style setup, added project-wide content scanning, consolidated theme imports, standardized theme tokens (including new --container-site max-width), and added a small prose utility to remove paragraph margins. <!-- end of auto-generated comment: release notes by coderabbit.ai --> --------- Co-authored-by: Claude Sonnet 4.6 <[email protected]>
29 lines
480 B
CSS
29 lines
480 B
CSS
@reference "./globals.css";
|
|
|
|
.table-editor-columns .sbui-formlayout--responsive {
|
|
gap: 0rem !important;
|
|
}
|
|
|
|
.table-editor-column-type .sbui-listbox-option-container {
|
|
width: 400px;
|
|
}
|
|
|
|
.table-editor-column-type .sbui-listbox {
|
|
@apply px-2;
|
|
}
|
|
|
|
.column-type-disabled {
|
|
@apply pointer-events-none;
|
|
}
|
|
|
|
.column-type-disabled .sbui-listbox-label {
|
|
@apply opacity-50;
|
|
}
|
|
|
|
/* This fix should ideally be in the UI library */
|
|
.table-editor-search {
|
|
input {
|
|
@apply pr-10;
|
|
}
|
|
}
|