-
Notifications
You must be signed in to change notification settings - Fork 2
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
wip: UI setup for team design settings #2643
Conversation
Removed vultr server and associated DNS entries |
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.
Looking fantastic and great to see Formik already getting wired up also 🙌
@@ -95,6 +95,7 @@ const Root = styled(Box)(({ theme }) => ({ | |||
left: 0, | |||
right: 0, | |||
minHeight: `calc(100% - ${HEADER_HEIGHT}px)`, | |||
zIndex: "2000", |
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.
We don't do this consistently anywhere yet, but ideally we'd assign these variables at the theme level to avoid conflicts.
Might be a nice quick tidy up to pick up at some point?
Docs:
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.
Ah yes, this is a leftover shim from the previous incarnation of the help text button, which was using fixed positioning and was being pushed into visibility above the setting panel.
I'll remove this for now and look to update the z-index hierarchy at the theme level in a separate PR.
@@ -27,7 +27,7 @@ const Root = styled(Box, { | |||
}), | |||
})); | |||
|
|||
export default function InputRow({ | |||
export default function EditorRow({ |
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.
👍
What does this PR do?
Builds UI for editor team design settings, currently hidden behind a feature flag.
Example:
https://2643.planx.pizza/barnet/settings/design
Feature flag to toggle design settings:
window.featureFlags.toggle("SHOW_TEAM_SETTINGS")