@@ -454,13 +449,14 @@ export default function EventTypePage({
{locations.length === 0 && (
-
+
openLocationModal(e.value)}
/>
@@ -547,7 +543,7 @@ export default function EventTypePage({
openLocationModal(location.type)}
- className="mr-2 text-sm text-secondary-600">
+ className="mr-2 text-sm text-primary-600">
Edit
removeLocation(location)}>
@@ -561,7 +557,7 @@ export default function EventTypePage({
setShowLocationModal(true)}>
Add another location option
@@ -587,7 +583,7 @@ export default function EventTypePage({
name="length"
id="length"
required
- className="focus:ring-secondary-500 focus:border-secondary-500 block w-full pl-2 pr-12 sm:text-sm border-gray-300 rounded-sm"
+ className="focus:ring-primary-500 focus:border-primary-500 block w-full pl-2 pr-12 sm:text-sm border-gray-300 rounded-sm"
placeholder="15"
defaultValue={eventType.length}
/>
@@ -611,12 +607,11 @@ export default function EventTypePage({
ref={descriptionRef}
name="description"
id="description"
- className="shadow-sm focus:ring-secondary-500 focus:border-secondary-500 block w-full sm:text-sm border-gray-300 rounded-sm"
+ className="shadow-sm focus:ring-primary-500 focus:border-primary-500 block w-full sm:text-sm border-gray-300 rounded-sm"
placeholder="A quick video meeting."
defaultValue={eventType.description}>
-
{({ open }) => (
<>
@@ -640,7 +635,7 @@ export default function EventTypePage({
type="text"
name="title"
id="title"
- className="shadow-sm focus:ring-secondary-500 focus:border-secondary-500 block w-full sm:text-sm border-gray-300 rounded-sm"
+ className="shadow-sm focus:ring-primary-500 focus:border-primary-500 block w-full sm:text-sm border-gray-300 rounded-sm"
placeholder="Meeting with {USER}"
defaultValue={eventType.eventName}
/>
@@ -677,7 +672,7 @@ export default function EventTypePage({
openEditCustomModel(customInput)}
- className="mr-2 text-sm text-secondary-600">
+ className="mr-2 text-sm text-primary-600">
Edit
removeCustom(customInput, e)}>
@@ -715,7 +710,7 @@ export default function EventTypePage({
id="ishidden"
name="ishidden"
type="checkbox"
- className="focus:ring-secondary-500 h-4 w-4 text-secondary-600 border-gray-300 rounded"
+ className="focus:ring-primary-500 h-4 w-4 text-primary-600 border-gray-300 rounded"
defaultChecked={eventType.hidden}
/>
@@ -744,7 +739,7 @@ export default function EventTypePage({
id="requiresConfirmation"
name="requiresConfirmation"
type="checkbox"
- className="focus:ring-secondary-500 h-4 w-4 text-secondary-600 border-gray-300 rounded"
+ className="focus:ring-primary-500 h-4 w-4 text-primary-600 border-gray-300 rounded"
defaultChecked={eventType.requiresConfirmation}
/>
@@ -784,9 +779,9 @@ export default function EventTypePage({