Skip to content

Commit 0235446

Browse files
committed
Clean up layout styles.
1 parent 91c6ae8 commit 0235446

File tree

1 file changed

+1
-9
lines changed

1 file changed

+1
-9
lines changed

src/layouts/ScheduleLayout.astro

Lines changed: 1 addition & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -53,14 +53,6 @@ const { title, description } = Astro.props;
5353
}
5454
}
5555

56-
57-
/*@media screen and (min-width: 1601px) {*/
58-
/*.layout-wrapper2 {*/
59-
/* max-width: auto !important;*/
60-
/* grid-template-columns: 1fr (1170px, 100%) 1fr !important;*/
61-
/*}*/
62-
/**/
63-
6456
@media screen and (min-width: 1201px) {
6557

6658
.layout-wrapper2.scaled-up .schedule *{
@@ -112,7 +104,7 @@ const { title, description } = Astro.props;
112104
const anchor = h3.querySelector('a[href^="#"]');
113105

114106
if (anchor) {
115-
const targetId = anchor.getAttribute('href').substring(1); // remove '#'
107+
const targetId = anchor.getAttribute('href').substring(1);
116108
const targetElement = document.getElementById(targetId);
117109

118110
if (targetElement) {

0 commit comments

Comments
 (0)