-
Notifications
You must be signed in to change notification settings - Fork 25
chore: adjust display css props to tailwind #1114
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
16d98d7 to
41f10b5
Compare
packages/design-system/src/components/OcFilterChip/OcFilterChip.vue
Outdated
Show resolved
Hide resolved
packages/web-app-files/src/components/SideBar/Audio/AudioMetaPanel.vue
Outdated
Show resolved
Hide resolved
packages/web-app-files/src/components/SideBar/Exif/ExifPanel.vue
Outdated
Show resolved
Hide resolved
packages/web-runtime/src/components/Topbar/ApplicationsMenu.vue
Outdated
Show resolved
Hide resolved
23b45a5 to
9c8d6b0
Compare
# Conflicts: # packages/design-system/src/components/OcButton/OcButton.vue # packages/design-system/src/components/OcTextInput/__snapshots__/OcTextInput.spec.ts.snap # packages/web-app-admin-settings/tests/unit/views/__snapshots__/Users.spec.ts.snap # packages/web-app-files/src/components/FilesViewWrapper.vue # packages/web-app-files/tests/unit/views/spaces/__snapshots__/Projects.spec.ts.snap # packages/web-app-files/tests/unit/views/trash/__snapshots__/Overview.spec.ts.snap # packages/web-pkg/src/components/FilesList/ResourceListItem.vue # packages/web-pkg/tests/unit/components/FilesList/__snapshots__/ResourceListItem.spec.ts.snap # packages/web-pkg/tests/unit/components/FilesList/__snapshots__/ResourceTiles.spec.ts.snap
7379c93 to
c12bd96
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Pull Request Overview
This PR migrates various display-related CSS properties from traditional CSS syntax to Tailwind utility classes throughout the codebase. The changes focus on converting display, justify-content, align-items, grid-template-columns, and similar properties to their Tailwind equivalents.
Key changes:
- Replace CSS properties like
display: grid,display: inline-flex,display: blockwith Tailwind classes - Convert flexbox and grid layout properties to Tailwind utilities
- Consolidate layout styles using Tailwind's consistent naming conventions
Reviewed Changes
Copilot reviewed 101 out of 101 changed files in this pull request and generated no comments.
Show a summary per file
| File | Description |
|---|---|
| packages/web-runtime/src/components/Topbar/TopBar.vue | Convert header display and alignment CSS to Tailwind classes |
| packages/web-runtime/src/components/Account/AccountTable.vue | Migrate responsive table display properties to Tailwind utilities |
| packages/web-pkg/src/components/FilesList/ResourceTable.vue | Convert table responsive breakpoints and display properties to Tailwind |
| packages/web-pkg/src/components/FilesList/ResourceListItem.vue | Replace flexbox display properties with Tailwind classes |
| packages/web-pkg/src/components/SideBar/SideBar.vue | Convert sidebar grid layout properties to Tailwind utilities |
| Multiple test snapshot files | Update test snapshots to reflect new Tailwind class names |
Tip: Customize your code reviews with copilot-instructions.md. Create the file or learn how to get started.
packages/web-app-files/src/components/SideBar/Audio/AudioMetaPanel.vue
Outdated
Show resolved
Hide resolved
packages/web-app-files/src/components/SideBar/Exif/ExifPanel.vue
Outdated
Show resolved
Hide resolved
…anel.vue Co-authored-by: Jannik Stehle <50302941+JammingBen@users.noreply.github.com>
Co-authored-by: Jannik Stehle <50302941+JammingBen@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Jannik Stehle <50302941+JammingBen@users.noreply.github.com>
Description
Related Issue
How Has This Been Tested?
Types of changes