Skip to content

Commit 07dafab

Browse files
committed
no pilla Only goti
1 parent 8d74d29 commit 07dafab

3 files changed

Lines changed: 4 additions & 4 deletions

File tree

assets/css/tailwind-input.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1021,7 +1021,7 @@
10211021
}
10221022

10231023
.home-section-nav__dot.is-active {
1024-
@apply bg-brand w-6;
1024+
@apply bg-brand;
10251025
}
10261026

10271027
.home-faq-scroll {

static/css/home-tailwind.css

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

static/js/home-hero.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
dot.type = 'button';
3030
dot.className =
3131
index === 0
32-
? 'w-6 h-2 rounded-full transition-all duration-300 bg-slate-800'
32+
? 'w-2 h-2 rounded-full transition-all duration-300 bg-slate-800'
3333
: 'w-2 h-2 rounded-full transition-all duration-300 bg-slate-300 hover:bg-slate-400';
3434
dot.setAttribute('aria-label', 'Go to slide ' + (index + 1));
3535
dot.addEventListener('click', function () {
@@ -60,7 +60,7 @@
6060
function updateIndicators(index) {
6161
Array.from(indicatorsContainer.children).forEach(function (dot, i) {
6262
if (i === index) {
63-
dot.className = 'w-6 h-2 rounded-full transition-all duration-300 bg-slate-800';
63+
dot.className = 'w-2 h-2 rounded-full transition-all duration-300 bg-slate-800';
6464
} else {
6565
dot.className = 'w-2 h-2 rounded-full transition-all duration-300 bg-slate-300 hover:bg-slate-400';
6666
}

0 commit comments

Comments
 (0)