Skip to content

Commit 9082231

Browse files
committed
fix hero
1 parent 0b70501 commit 9082231

File tree

5 files changed

+6
-1
lines changed

5 files changed

+6
-1
lines changed

.DS_Store

0 Bytes
Binary file not shown.

assets/.DS_Store

0 Bytes
Binary file not shown.

assets/images/hero-background.jpg

-576 KB
Loading

resources.html

+2-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,8 @@ <h1 class="text-4xl font-bold mb-8 dark:text-white">Resources</h1>
1515
<tbody class="divide-y divide-gray-100 dark:divide-gray-600">
1616
{% for event in site.data.events %}
1717
{% if event.resources %}
18-
<tr class="hover:bg-gray-50 dark:hover:bg-gray-700 transition-colors duration-150">
18+
19+
<tr class="text-gray-900 dark:text-gray-100 hover:bg-gray-50 dark:hover:bg-gray-600 bg-white dark:bg-gray-700 transition-colors duration-150">
1920
<td class="px-6 py-4 dark:text-gray-200">{{ event.name }}</td>
2021
<td class="px-6 py-4">
2122
<div class="flex flex-wrap justify-center gap-4">

tailwind.config.js

+4
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,12 @@ module.exports = {
1111
// Dark mode should be at the root level, not inside theme
1212
darkMode: 'class',
1313
// Theme configuration is simplified and properly structured
14+
mode: 'jit',
1415
theme: {
1516
extend: {
17+
brightness: {
18+
'20': '0.2',
19+
},
1620
fontFamily: {
1721
sans: ['Atkinson Hyperlegible', 'sans-serif']
1822
}

0 commit comments

Comments
 (0)