Fixing border in installed apps (#4745)
Co-authored-by: Omar López <zomars@me.com> Co-authored-by: kodiakhq[bot] <49736102+kodiakhq[bot]@users.noreply.github.com>pull/4761/head
parent
47df21322d
commit
7b9e77f43a
|
@ -32,7 +32,7 @@ function IntegrationListItem(props: {
|
|||
<ListItem
|
||||
expanded={!!props.children}
|
||||
className={classNames(
|
||||
"my-0 flex-col rounded-md border transition-colors duration-500",
|
||||
"my-0 flex-col border transition-colors duration-500 first:rounded-t-md last:rounded-b-md",
|
||||
highlight ? "bg-yellow-100" : ""
|
||||
)}>
|
||||
<div className={classNames("flex w-full flex-1 items-center space-x-2 p-4 rtl:space-x-reverse")}>
|
||||
|
|
|
@ -91,7 +91,7 @@ interface IntegrationsContainerProps {
|
|||
|
||||
const IntegrationsList = ({ data }: { data: inferQueryOutput<"viewer.integrations"> }) => {
|
||||
return (
|
||||
<List>
|
||||
<List noBorderTreatment>
|
||||
{data.items.map((item) => (
|
||||
<IntegrationListItem
|
||||
name={item.name}
|
||||
|
|
Loading…
Reference in New Issue