removing more leading-none (#8464)
This commit is contained in:
@@ -11,11 +11,11 @@ export const InstallAppButtonMap = {
|
||||
vital: dynamic(() => import("./vital/components/InstallAppButton")),
|
||||
};
|
||||
export const AppSettingsComponentsMap = {
|
||||
"general-app-settings": dynamic(() =>
|
||||
import("./templates/general-app-settings/components/AppSettingsInterface")
|
||||
"general-app-settings": dynamic(
|
||||
() => import("./templates/general-app-settings/components/AppSettingsInterface")
|
||||
),
|
||||
weather_in_your_calendar: dynamic(() =>
|
||||
import("./weather_in_your_calendar/components/AppSettingsInterface")
|
||||
weather_in_your_calendar: dynamic(
|
||||
() => import("./weather_in_your_calendar/components/AppSettingsInterface")
|
||||
),
|
||||
zapier: dynamic(() => import("./zapier/components/AppSettingsInterface")),
|
||||
};
|
||||
@@ -29,10 +29,10 @@ export const EventTypeAddonMap = {
|
||||
qr_code: dynamic(() => import("./qr_code/components/EventTypeAppCardInterface")),
|
||||
rainbow: dynamic(() => import("./rainbow/components/EventTypeAppCardInterface")),
|
||||
stripepayment: dynamic(() => import("./stripepayment/components/EventTypeAppCardInterface")),
|
||||
"booking-pages-tag": dynamic(() =>
|
||||
import("./templates/booking-pages-tag/components/EventTypeAppCardInterface")
|
||||
"booking-pages-tag": dynamic(
|
||||
() => import("./templates/booking-pages-tag/components/EventTypeAppCardInterface")
|
||||
),
|
||||
"event-type-app-card": dynamic(() =>
|
||||
import("./templates/event-type-app-card/components/EventTypeAppCardInterface")
|
||||
"event-type-app-card": dynamic(
|
||||
() => import("./templates/event-type-app-card/components/EventTypeAppCardInterface")
|
||||
),
|
||||
};
|
||||
|
||||
@@ -4,10 +4,7 @@ export function Label(props: JSX.IntrinsicElements["label"]) {
|
||||
return (
|
||||
<label
|
||||
{...props}
|
||||
className={classNames(
|
||||
"text-default text-emphasis mb-2 block text-sm font-medium leading-none",
|
||||
props.className
|
||||
)}>
|
||||
className={classNames("text-default text-emphasis mb-2 block text-sm font-medium", props.className)}>
|
||||
{props.children}
|
||||
</label>
|
||||
);
|
||||
|
||||
Reference in New Issue
Block a user