forked from stack-auth/stack-auth
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmdx-cards.css
More file actions
48 lines (41 loc) · 876 Bytes
/
mdx-cards.css
File metadata and controls
48 lines (41 loc) · 876 Bytes
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
.components-cards .fern-card > .flex {
align-items: stretch !important;
}
.components-cards .components-card-content {
display: flex;
justify-content: center;
flex-direction: column;
align-items: center;
gap: 16px;
color: var(--fd-foreground);
font-weight: bold;
}
.components-cards .components-card-content > .img-wrapper {
pointer-events: none;
touch-action: none;
user-select: none;
-webkit-user-select: none;
-moz-user-select: none;
height: 200px;
display: flex;
justify-content: center;
align-items: center;
}
.components-cards .components-card-content > .img-wrapper img {
object-fit: contain;
border-radius: 12px;
box-shadow: 1px 1px 5px 0px rgba(0, 0, 0, 0.1);
}
/* Image height classes */
.stack-50h {
height: 50px;
}
.stack-100h {
height: 100px;
}
.stack-150h {
height: 150px;
}
.stack-200h {
height: 200px;
}