* changed styles for Zap automation ui to match figma * Increased margintop value * increase margintop value to mt-4 * fixed some styling issues * fixed issue with buttons being at different heights * changed vertical positioning of text and increased min height Co-authored-by: Peer Richelsen <peeroke@gmail.com>
14 lines
406 B
TypeScript
14 lines
406 B
TypeScript
import { AppSettingsComponentsMap } from "@calcom/app-store/apps.browser.generated";
|
|
|
|
import { DynamicComponent } from "./DynamicComponent";
|
|
|
|
export const AppSettings = (props: { slug: string }) => {
|
|
return (
|
|
<DynamicComponent<typeof AppSettingsComponentsMap>
|
|
wrapperClassName="border-t border-gray-200 bg-gray-100"
|
|
componentMap={AppSettingsComponentsMap}
|
|
{...props}
|
|
/>
|
|
);
|
|
};
|