Skip to content

Commit f720fd8

Browse files
committed
fix: footer links and styles
1 parent cfd5883 commit f720fd8

File tree

2 files changed

+12
-10
lines changed

2 files changed

+12
-10
lines changed

_includes/footer.html

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<img src="/img/2025/common/footer-logo.png" alt="DojoCon Japan 2025 Inspire Next." />
44
</div>
55
<div class="footer-social">
6-
<a href="https://twitter.com/{{ site.twitter }}" target="_blank" rel="noopener" class="social-x" aria-label="X">
6+
<a href="https://x.com/{{ site.twitter }}" target="_blank" rel="noopener" class="social-x" aria-label="X">
77
<i class="fa-brands fa-x-twitter" style="color:#000000;"></i>
88
</a>
99
<a href="https://www.facebook.com/{{ site.facebook }}" target="_blank" rel="noopener" class="social-facebook" aria-label="Facebook">
@@ -16,7 +16,6 @@
1616
<nav class="footer-links">
1717
<a href="/">ホーム</a>
1818
<a href="/code-of-conduct">行動規範</a>
19-
<a href="/sitemap">サイトマップ</a>
2019
<a href="/privacy">プライバシーポリシー</a>
2120
<a href="{{site.contact}}" target="_blank">お問い合わせ</a>
2221
</nav>

_sass/includes/footer.scss

Lines changed: 11 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -14,22 +14,25 @@
1414
}
1515

1616
.footer-social {
17+
display: flex;
18+
justify-content: center;
1719
margin-bottom: 24px;
20+
column-gap: 28px;
1821

1922
a {
20-
display: inline-block;
21-
margin: 0 14px;
2223
font-size: 2.2rem;
2324
color: #000;
24-
width: 48px;
25-
height: 48px;
25+
width: 52px;
26+
height: 52px;
2627
line-height: 48px;
27-
border-radius: 50%;
28-
background: #ffffff;
29-
transition: background 0.2s, color 0.2s;
28+
border-bottom: 4px solid transparent;
29+
transition: border-color 0.2s;
30+
display: flex;
31+
align-items: center;
32+
justify-content: center;
3033

3134
&:hover {
32-
background: $hover-color;
35+
border-color: $hover-color;
3336
color: #fff;
3437
}
3538
}

0 commit comments

Comments
 (0)