Skip to content

Commit c1f6204

Browse files
authored
Merge pull request #94 from rubyuy/update-sponsors-2025
Update sponsors 2025
2 parents 419bf03 + 3220839 commit c1f6204

File tree

7 files changed

+25
-16
lines changed

7 files changed

+25
-16
lines changed

_data/companies.yml

+7
Original file line numberDiff line numberDiff line change
@@ -67,3 +67,10 @@ howdy:
6767
image: /images/sponsors/howdy.svg
6868
address: F. García Cortinas 2357
6969
address_url: https://maps.app.goo.gl/V9VASexXVijNw64p7
70+
71+
mimiquate:
72+
name: Mimiquate
73+
url: https://www.mimiquate.com
74+
image: /images/sponsors/mimiquate.svg
75+
address: Bv. España 2480
76+
address_url: https://maps.app.goo.gl/KUqohrMxJdLubP596

_data/sponsors.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
- rootstrap
2-
- gogrow
32
- neocoast
43
- eagerworks
54
- cedarcode
65
- howdy
76
- xmartlabs
87
- effectussoftware
8+
- mimiquate

_sass/sponsors.scss

+6-7
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,12 @@
33
overflow: hidden;
44

55
ul {
6-
padding-left: 2rem;
6+
padding-left: 3rem;
7+
padding-top: 2rem;
8+
padding-bottom: 2rem;
79
display: flex;
810
align-items: center;
9-
gap: 2rem;
11+
gap: 3rem;
1012
border-top: 2px solid black;
1113
background-color: #F6EEEC;
1214

@@ -25,11 +27,8 @@
2527

2628
li {
2729
img {
28-
width: 12rem;
29-
30-
@media (max-width: 425px) {
31-
width: 8rem;
32-
}
30+
max-width: 12rem;
31+
height: 3rem;
3332
}
3433
}
3534
}

assets/js/sponsors.js

+3-7
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,7 @@
11
document.addEventListener("DOMContentLoaded", () => {
2-
const sponsorsList = document.querySelector("#sponsors-list ul")
3-
duplicate(sponsorsList, {times: 2})
4-
addAnimationToSponsorsLists()
5-
})
6-
7-
function addAnimationToSponsorsLists() {
2+
const sponsorsLists = document.querySelectorAll("#sponsors-list ul");
3+
sponsorsLists.forEach((sponsorsList) => duplicate(sponsorsList, { times: 2 }));
84
document.querySelectorAll("#sponsors-list ul").forEach(list => {
95
list.classList.add("infinite-horizontal-animation")
106
})
11-
}
7+
});

images/sponsors/mimiquate.svg

+6
Loading

images/sponsors/xmartlabs.svg

+1-1
Loading

index.md

+1
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44

55
<article>
66
<section>
7+
{% include sponsors.html %}
78
{% include meetups.html %}
89
{% include sponsors.html %}
910
</section>

0 commit comments

Comments
 (0)