x
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<div class="card flex flex-col gap" style="--card-padding: .75rem"> <div class="flex flex-col"> <h3 class="font-medium leading-none mbe-1">Scheduled reports</h3> <p class="text-sm text-subtle">Weekly snapshots. No more manual exports.</p> </div> <ul class="flex flex-col gap-half text-sm"> <li class="flex items-start gap-half" style="--icon-size: 1.5rem"> <span class="icon icon--chevron-right text-subtle" aria-hidden="true"></span> <span>Choose a schedule (daily, or weekly).</span> </li> <li class="flex items-start gap-half" style="--icon-size: 1.5rem"> <span class="icon icon--chevron-right text-subtle" aria-hidden="true"></span> <span>Send to channels or specific teammates.</span> </li> <li class="flex items-start gap-half" style="--icon-size: 1.5rem"> <span class="icon icon--chevron-right text-subtle" aria-hidden="true"></span> <span>Include charts, tables, and key metrics.</span> </li> </ul> <div class="card__footer flex flex-col gap-half"> <button type="button" class="btn btn--primary btn--sm">Set up scheduled reports</button> <button type="button" class="btn btn--sm">See what's new</button> </div></div>1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
<div class="card flex flex-col gap" style="--card-padding: .75rem"> <div class="flex flex-col"> <h3 class="font-medium leading-none mbe-1">Scheduled reports</h3> <p class="text-sm text-subtle">Weekly snapshots. No more manual exports.</p> </div> <ul class="flex flex-col gap-half text-sm"> <li class="flex items-start gap-half" style="--icon-size: 1.5rem"> <span class="icon icon--chevron-right text-subtle" aria-hidden="true"></span> <span>Choose a schedule (daily, or weekly).</span> </li> <li class="flex items-start gap-half" style="--icon-size: 1.5rem"> <span class="icon icon--chevron-right text-subtle" aria-hidden="true"></span> <span>Send to channels or specific teammates.</span> </li> <li class="flex items-start gap-half" style="--icon-size: 1.5rem"> <span class="icon icon--chevron-right text-subtle" aria-hidden="true"></span> <span>Include charts, tables, and key metrics.</span> </li> </ul> <div class="card__footer flex flex-col gap-half"> <button type="button" class="btn btn--primary btn--sm">Set up scheduled reports</button> <button type="button" class="btn btn--sm">See what's new</button> </div></div>1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
.card { --card-padding: var(--size-4); background-color: var(--color-surface); border-radius: var(--rounded-xl); border-width: var(--border); box-shadow: var(--shadow-sm); padding: var(--card-padding, var(--size-4));}.card__footer { background-color: rgb(from var(--color-border-light) r g b / .5); border-block-start-width: var(--border); margin-block-end: calc(var(--card-padding) * -1); margin-inline: calc(var(--card-padding) * -1); padding: var(--card-padding);}
Java Script is not required or multiple files are needed, check the notes.
No notes provided.