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
Leo Giovanetti 2022-09-29 10:26:36 -03:00 committed by GitHub
parent 47df21322d
commit 7b9e77f43a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -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")}>

View File

@ -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}