-
Notifications
You must be signed in to change notification settings - Fork 8.3k
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
[UII] Remove scss usage #213281
base: main
Are you sure you want to change the base?
[UII] Remove scss usage #213281
Conversation
Pinging @elastic/fleet (Team:Fleet) |
export interface HeaderProps { | ||
maxWidth?: number | string; | ||
leftColumn?: JSX.Element; | ||
rightColumn?: JSX.Element; | ||
rightColumnGrow?: EuiFlexItemProps['grow']; | ||
topContent?: JSX.Element; | ||
tabs?: Array<Omit<EuiTabProps, 'name'> & { name?: JSX.Element | string }>; | ||
tabsClassName?: string; | ||
tabsCss?: string; |
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.
nit: will it be better to type this as an emotion interpolation as type here? and use emotion combination after?
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.
i tried a few ways of doing this including emotion interpolation here, but couldn't get it to work with the additional styles that we already add to EuiTabs
😔
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.
LGTM 🚀
💛 Build succeeded, but was flaky
Failed CI StepsTest FailuresMetrics [docs]Module Count
Async chunks
Page load bundle
History
cc @jen-huang |
Summary
Part of https://github.com/elastic/kibana-team/issues/1417.
Removes Fleet's single usage of an
.scss
file to control page tab position for integration details page. Replaces it with a passed down css prop, UI looks the same:Checklist
release_note:*
label is applied per the guidelines