hotfix: Forgot to format#127
Conversation
Signed-off-by: ysknsid25 <kengo071225@gmail.com>
|
@ysknsid25 is attempting to deploy a commit to the Open Circle Team on Vercel. A member of the Team first needs to authorize it. |
WalkthroughThis pull request systematically reorders Tailwind CSS utility classes across the entire codebase spanning all framework playgrounds (Preact, Qwik, Solid, Vue) and the website. Changes include reordering class declarations in component label elements, form inputs, layout containers, and global CSS utilities. Specific styling adjustments include repositioning the transparent border on spinner animations and adjusting decoration element positioning. No component logic, props, or visual behavior changes occur—only the sequence of utility class declarations is modified. 🚥 Pre-merge checks | ✅ 4 | ❌ 1❌ Failed checks (1 warning)
✅ Passed checks (4 passed)
✏️ Tip: You can configure your own custom pre-merge checks in the settings. Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out. Comment |
There was a problem hiding this comment.
Pull request overview
Note
Copilot was unable to run its full agentic suite in this review.
This PR standardizes Tailwind utility ordering across the website and all playground implementations, primarily by reordering class strings and @apply directives to be consistent.
Changes:
- Reordered Tailwind utilities in shared styles (
root.css) including thefocus-ringutility and MDX styling. - Reordered Tailwind class strings across website routes/components for consistent formatting.
- Applied the same class-order normalization across Vue/Solid/Qwik/Preact playground components and routes.
Reviewed changes
Copilot reviewed 44 out of 44 changed files in this pull request and generated no comments.
Show a summary per file
| File | Description |
|---|---|
| website/src/styles/root.css | Reorders @apply utility lists (focus ring + MDX styling) for consistent Tailwind class ordering. |
| website/src/routes/playground/todos/index.tsx | Reorders Tailwind classes on inputs for consistency. |
| website/src/routes/playground/nested/index.tsx | Reorders Tailwind classes on inputs for consistency. |
| website/src/routes/playground/layout.tsx | Reorders layout class list for consistency. |
| website/src/routes/index.tsx | Reorders Tailwind classes in hero/FAQ section markup for consistency. |
| website/src/routes/blog/index.tsx | Reorders main container class list for consistency. |
| website/src/routes/blog/(posts)/layout.tsx | Reorders article/layout class lists for consistency. |
| website/src/routes/404.tsx | Reorders main container class list for consistency. |
| website/src/routes/(legal)/layout.tsx | Reorders main container class list for consistency. |
| website/src/hooks/useMDXComponents.tsx | Reorders positioned toolbar classes for consistency. |
| website/src/components/TextLink.tsx | Reorders focus-ring related classes for consistency. |
| website/src/components/Spinner.tsx | Reorders border utility classes for consistency. |
| website/src/components/SideBar.tsx | Reorders gradient overlay class list for consistency. |
| website/src/components/Radio.tsx | Reorders label class list for consistency. |
| website/src/components/Property.tsx | Reorders text styling classes for consistency. |
| website/src/components/PostList.tsx | Reorders heading class list for consistency. |
| website/src/components/PostCover.tsx | Reorders container/decoration classes for consistency. |
| website/src/components/Navigation.tsx | Reorders background gradient classes for consistency. |
| website/src/components/Header.tsx | Reorders header/nav class lists for consistency. |
| website/src/components/DocsLayout.tsx | Reorders responsive padding classes for consistency. |
| website/src/components/DocSearch.tsx | Reorders overlay/layout classes for consistency. |
| website/src/components/Debugger.tsx | Reorders spacing utilities for consistency. |
| website/src/components/Checkbox.tsx | Reorders label class list for consistency. |
| website/src/components/ApiList.tsx | Reorders list container classes for consistency. |
| playgrounds/vue/src/views/TodosView.vue | Reorders Tailwind classes on inputs for consistency. |
| playgrounds/vue/src/views/NestedView.vue | Reorders Tailwind classes on inputs for consistency. |
| playgrounds/vue/src/components/Spinner.vue | Reorders border utility classes for consistency. |
| playgrounds/vue/src/components/Radio.vue | Reorders label class list for consistency. |
| playgrounds/vue/src/components/Checkbox.vue | Reorders label class list for consistency. |
| playgrounds/solid/src/routes/todos/index.tsx | Reorders Tailwind classes on inputs for consistency. |
| playgrounds/solid/src/routes/nested/index.tsx | Reorders Tailwind classes on inputs for consistency. |
| playgrounds/solid/src/components/Spinner.tsx | Reorders border utility classes for consistency. |
| playgrounds/solid/src/components/Radio.tsx | Reorders label class list for consistency. |
| playgrounds/solid/src/components/Checkbox.tsx | Reorders label class list for consistency. |
| playgrounds/qwik/src/routes/todos/index.tsx | Reorders Tailwind classes on inputs for consistency. |
| playgrounds/qwik/src/routes/nested/index.tsx | Reorders Tailwind classes on inputs for consistency. |
| playgrounds/qwik/src/components/Spinner.tsx | Reorders border utility classes for consistency. |
| playgrounds/qwik/src/components/Radio.tsx | Reorders label class list for consistency. |
| playgrounds/qwik/src/components/Checkbox.tsx | Reorders label class list for consistency. |
| playgrounds/preact/src/routes/todos/index.tsx | Reorders Tailwind classes on inputs for consistency. |
| playgrounds/preact/src/routes/nested/index.tsx | Reorders Tailwind classes on inputs for consistency. |
| playgrounds/preact/src/components/Spinner.tsx | Reorders border utility classes for consistency. |
| playgrounds/preact/src/components/Radio.tsx | Reorders label class list for consistency. |
| playgrounds/preact/src/components/Checkbox.tsx | Reorders label class list for consistency. |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
Signed-off-by: ysknsid25 <kengo071225@gmail.com>
|
I'm so sorry🙇🙇 The issue was caused by a difference in pnpm versions in my local environment. It was my mistake. I'm closing this pull request. |
related: #115
I try to
pnpm run formatin my local, so many diffs are apeared. these are too noisy. Please resolve these differences before opening #115 🙏Summary by cubic
Ran
pnpm run formatacross the repo to normalize Tailwind class order and minor prop/class attribute ordering in UI components and routes. No functional changes; reduces noisy diffs and unblocks #115.Written for commit 377c441. Summary will update on new commits.