Skip to content

Commit d2284ff

Browse files
authored
Adjust logo alignment (#31)
Signed-off-by: Santiago Beroch <[email protected]>
1 parent 59fcb8c commit d2284ff

File tree

2 files changed

+15
-27
lines changed

2 files changed

+15
-27
lines changed

assets/style.css

+12-24
Original file line numberDiff line numberDiff line change
@@ -930,8 +930,8 @@ code,
930930
bottom: -30px;
931931
}
932932

933-
.-top-5 {
934-
top: -1.25rem;
933+
.-top-4 {
934+
top: -1rem;
935935
}
936936

937937
.left-0 {
@@ -966,22 +966,6 @@ code,
966966
top: auto;
967967
}
968968

969-
.left-\[10\%\] {
970-
left: 10%;
971-
}
972-
973-
.left-\[11\%\] {
974-
left: 11%;
975-
}
976-
977-
.left-\[12\%\] {
978-
left: 12%;
979-
}
980-
981-
.-top-4 {
982-
top: -1rem;
983-
}
984-
985969
.z-0 {
986970
z-index: 0;
987971
}
@@ -1220,8 +1204,8 @@ code,
12201204
width: 2rem;
12211205
}
12221206

1223-
.w-\[30rem\] {
1224-
width: 30rem;
1207+
.w-\[32rem\] {
1208+
width: 32rem;
12251209
}
12261210

12271211
.w-\[90\%\] {
@@ -1237,10 +1221,6 @@ code,
12371221
width: 100%;
12381222
}
12391223

1240-
.w-\[32rem\] {
1241-
width: 32rem;
1242-
}
1243-
12441224
.max-w-2xl {
12451225
max-width: 42rem;
12461226
}
@@ -1289,6 +1269,10 @@ code,
12891269
max-width: 28rem;
12901270
}
12911271

1272+
.max-w-\[300px\] {
1273+
max-width: 300px;
1274+
}
1275+
12921276
.grow {
12931277
flex-grow: 1;
12941278
}
@@ -2022,6 +2006,10 @@ code,
20222006
flex-direction: row-reverse;
20232007
}
20242008

2009+
.lg\:items-center {
2010+
align-items: center;
2011+
}
2012+
20252013
.lg\:justify-between {
20262014
justify-content: space-between;
20272015
}

layouts/partials/community/socials.html

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
{{ with site.Data.socials }}
22
<section class="bg-dark py-24 border-b border-b-gray/50">
3-
<div class="container grid grid-cols-1 lg:grid-cols-3 gap-20">
3+
<div class="container flex flex-col lg:flex-row lg:items-center justify-center gap-20">
44
{{ range . }}
5-
<div class="flex flex-col lg:gap-y-6 gap-y-4">
5+
<div class="flex flex-col lg:gap-y-6 gap-y-4 items-center">
66
<img src="{{ site.BaseURL }}{{ .icon }}" alt="{{ .name }}" class="max-w-[160px]">
77
<h3 class="text-white font-medium font-grostesk text-3xl">{{ .name }}</h3>
8-
<p class="text-white/70 text-lg leading-[26px] font-graphik">{{ .text }}</p>
8+
<p class="text-white/70 text-lg leading-[26px] font-graphik max-w-[300px] text-center">{{ .text }}</p>
99
<a
1010
href="{{ .link.url }}"
1111
target="_blank"

0 commit comments

Comments
 (0)