We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 204cbeb commit 8d67a10Copy full SHA for 8d67a10
1 file changed
src/components/projects/item-card.astro
@@ -30,6 +30,16 @@ if ((image.width / image.height).toFixed(2) !== "1.78") {
30
margin-bottom: v-size(10);
31
text-align: center;
32
}
33
+ li:where(:last-child) {
34
+ margin-bottom: v-size(16);
35
+ }
36
+ li:not(:last-child)::after {
37
+ content: "";
38
+ height: calc(v-size(1) / 3);
39
+ width: 30vw;
40
+ margin: v-size(6) auto auto;
41
+ background-color: var(--c-accent);
42
43
h2 {
44
margin-bottom: 0;
45
font-weight: 500;
@@ -41,8 +51,12 @@ if ((image.width / image.height).toFixed(2) !== "1.78") {
51
grid-template-columns: 1fr 1fr;
52
grid-template-rows: auto auto 1fr;
53
column-gap: v-size(5);
54
+ margin-bottom: v-size(20);
55
text-align: left;
56
57
+ li::after {
58
+ display: none;
59
46
60
picture {
47
61
grid-area: picture;
48
62
0 commit comments