Skip to content

Commit

Permalink
Merge branch 'main' into bdw-1790
Browse files Browse the repository at this point in the history
  • Loading branch information
mathieu-benoit authored Nov 5, 2024
2 parents 9802b11 + 4782b8c commit 8aae805
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 28 deletions.
2 changes: 1 addition & 1 deletion assets/main.css
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@

#blog-post-content ol,
#blog-post-content ul {
@apply mb-4;
@apply mb-4 pl-8;
}

#blog-post-content li {
Expand Down
37 changes: 13 additions & 24 deletions assets/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -717,6 +717,7 @@ code,
#blog-post-content ol,
#blog-post-content ul {
margin-bottom: 1rem;
padding-left: 2rem;
}

#blog-post-content li {
Expand Down Expand Up @@ -930,8 +931,8 @@ code,
bottom: -30px;
}

.-top-5 {
top: -1.25rem;
.-top-4 {
top: -1rem;
}

.left-0 {
Expand Down Expand Up @@ -966,22 +967,6 @@ code,
top: auto;
}

.left-\[10\%\] {
left: 10%;
}

.left-\[11\%\] {
left: 11%;
}

.left-\[12\%\] {
left: 12%;
}

.-top-4 {
top: -1rem;
}

.z-0 {
z-index: 0;
}
Expand Down Expand Up @@ -1220,8 +1205,8 @@ code,
width: 2rem;
}

.w-\[30rem\] {
width: 30rem;
.w-\[32rem\] {
width: 32rem;
}

.w-\[90\%\] {
Expand All @@ -1237,10 +1222,6 @@ code,
width: 100%;
}

.w-\[32rem\] {
width: 32rem;
}

.max-w-2xl {
max-width: 42rem;
}
Expand Down Expand Up @@ -1289,6 +1270,10 @@ code,
max-width: 28rem;
}

.max-w-\[300px\] {
max-width: 300px;
}

.grow {
flex-grow: 1;
}
Expand Down Expand Up @@ -2022,6 +2007,10 @@ code,
flex-direction: row-reverse;
}

.lg\:items-center {
align-items: center;
}

.lg\:justify-between {
justify-content: space-between;
}
Expand Down
6 changes: 3 additions & 3 deletions layouts/partials/community/socials.html
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
{{ with site.Data.socials }}
<section class="bg-dark py-24 border-b border-b-gray/50">
<div class="container grid grid-cols-1 lg:grid-cols-3 gap-20">
<div class="container flex flex-col lg:flex-row lg:items-center justify-center gap-20">
{{ range . }}
<div class="flex flex-col lg:gap-y-6 gap-y-4">
<div class="flex flex-col lg:gap-y-6 gap-y-4 items-center">
<img src="{{ site.BaseURL }}{{ .icon }}" alt="{{ .name }}" class="max-w-[160px]">
<h3 class="text-white font-medium font-grostesk text-3xl">{{ .name }}</h3>
<p class="text-white/70 text-lg leading-[26px] font-graphik">{{ .text }}</p>
<p class="text-white/70 text-lg leading-[26px] font-graphik max-w-[300px] text-center">{{ .text }}</p>
<a
href="{{ .link.url }}"
target="_blank"
Expand Down

0 comments on commit 8aae805

Please sign in to comment.