Skip to content

Commit cc17495

Browse files
committed
wip: add subtle borders
1 parent 5bcbdf8 commit cc17495

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

app/assets/css/_component.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
}
2424

2525
@utility form-container {
26-
@apply bg-secondary rounded-lg overflow-hidden px-side-mobile md:px-10 py-10 max-w-160 w-full;
26+
@apply bg-secondary rounded-lg overflow-hidden px-side-mobile md:px-10 py-10 max-w-160 w-full border border-black/10;
2727
}
2828

2929
/* Dark variant links for fifty-fifty module */

app/components/modules/FiftyFiftySecondary.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<template>
22
<div
3-
class="grid-12 bg-secondary max-md:-mx-side-mobile md:px-0 md:rounded-2xl overflow-hidden"
3+
class="grid-12 bg-secondary max-md:-mx-side-mobile md:px-0 md:rounded-2xl overflow-hidden border border-black/10"
44
>
55
<div
66
class="col-span-12 max-md:order-2 md:col-span-5 max-w-copy max-md:mx-side-mobile flex flex-col justify-center gap-y-6 py-10"

app/components/modules/Schedule.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
<div
2020
v-for="(event, index) in events"
2121
:key="index"
22-
class="rounded-xl p-6 text-center bg-secondary"
22+
class="rounded-xl p-6 text-center bg-secondary border border-black/10"
2323
>
2424
<Heading as="h4" class="mb-2">{{ event.title }}</Heading>
2525
<RichTextRenderer

0 commit comments

Comments
 (0)