-
Notifications
You must be signed in to change notification settings - Fork 0
Standardize z-index usage across components #54
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
Extends the development philosophy to include a rule against starting servers directly. This is to ensure that the development environment is consistent and that all server interactions are managed through the appropriate channels.
Introduces a structured development process centered around the decomposition of GitHub issues into manageable, vertical-slice sub-tasks. This includes: - A sub-issue template to ensure clarity and consistency. - A workflow guide for junior developers. - A prompt for senior developers to facilitate issue decomposition.
Adds a new prompt, 'prompts/logical_commit_workflow.md', that defines a rigorous, verification-based process for committing changes. This workflow ensures that all changes are analyzed and grouped into distinct, logical commits based on their content and purpose, rather than on assumptions.
1d93da1 to
674c1b9
Compare
| <.drawer show={false} /> | ||
| <.bottom_dock current_scope={@current_scope} /> | ||
| </div> | ||
| <div id="sidebar-container" class="drawer-side z-80" phx-hook="Sidebar"> |
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.
If this was previously at z-80, why did you use z-drawer, rather than z-modal?
|
|
||
| def hamburger_button(assigns) do | ||
| ~H""" | ||
| <label for="sidebar-drawer" class="btn btn-ghost mx-1 px-2 z-100 print:hidden"> |
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.
Same question as above.
lib/cms_web/components/settings.ex
Outdated
| <div | ||
| id="settings-drawer" | ||
| class={"print:hidden fixed bottom-0 left-0 right-0 bg-base-200 p-4 pb-20 transform transition-transform duration-300 ease-in-out z-30" <> if(@show, do: " translate-y-0", else: " translate-y-full")} | ||
| class={"print:hidden fixed bottom-0 left-0 right-0 bg-base-200 p-4 pb-20 transform transition-transform duration-300 ease-in-out z-drawer" <> if(@show, do: " translate-y-0", else: " translate-y-full")} |
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.
Shouldn't this be z-sticky?
674c1b9 to
ca0a22b
Compare
Closes #41