Skip to content

Commit f19a39b

Browse files
authored
Merge pull request #83 from GoCon/feature/fix_sp_footer
SPフッターにAbout/Past Conferences/SNSリンクを表示
2 parents cf6cf19 + 6d9a6ab commit f19a39b

File tree

1 file changed

+8
-10
lines changed

1 file changed

+8
-10
lines changed

src/components/Footer.astro

Lines changed: 8 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ const currentLocale = Astro.currentLocale || "ja";
1212
<div class="footer-navigation">
1313
<div class="footer-body">
1414
<div class="link-list">
15-
<div class="link-column">
15+
<div class="link-column site-link-group">
1616
<div class="link-group">
1717
<a href={getRelativeLocaleUrl(currentLocale)} class="text-link"
1818
>Home</a
@@ -140,7 +140,7 @@ const currentLocale = Astro.currentLocale || "ja";
140140
width: 100%;
141141
margin: 0 auto;
142142
gap: 24px;
143-
padding: 0 20px;
143+
padding: 0 24px;
144144
box-sizing: border-box;
145145
}
146146

@@ -266,17 +266,15 @@ const currentLocale = Astro.currentLocale || "ja";
266266
background: var(--gradient);
267267
}
268268

269-
@media (max-width: 768px) {
270-
.footer-navigation {
271-
border-radius: 20px 20px 0 0;
272-
}
273-
274-
.link-list {
269+
@media (max-width: 860px) {
270+
.site-link-group {
275271
display: none;
276272
}
273+
}
277274

278-
hr {
279-
display: none;
275+
@media (max-width: 768px) {
276+
.footer-navigation {
277+
border-radius: 20px 20px 0 0;
280278
}
281279

282280
.footer-info {

0 commit comments

Comments
 (0)