aboutsummaryrefslogtreecommitdiff
path: root/src/components/DirectionCard.svelte
blob: 909feac77298ec9b2fbe6d13915101f135af5fc4 (plain) (blame)
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
<script>
	export let imageSpec;
	export let direction;
</script>

<section class="direction-card" class:reverse={direction === 'right'}>
	<div class="direction-card__row row my-2">
		<div class="direction-card__media col-md-4">
			<img
				class="img-fluid rounded shadow"
				src={imageSpec.image}
				alt={imageSpec.alt}
				loading="lazy"
				decoding="async"
			/>
		</div>
		<div class="direction-card__content col-md-8 card">
			<slot />
		</div>
	</div>
</section>

<style>
	.direction-card__row {
		align-items: center;
	}

	.direction-card__media {
		max-width: 420px;
		margin-inline: auto;
	}

	@media (min-width: 768px) {
		.direction-card__media {
			max-width: none;
		}

		.reverse .direction-card__media {
			order: 2;
		}

		.reverse .direction-card__content {
			order: 1;
		}
	}

	.direction-card :global(img) {
		max-height: 520px;
		object-fit: cover;
	}
</style>