Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
41 changes: 32 additions & 9 deletions assets/scss/_footer_project.scss
Original file line number Diff line number Diff line change
Expand Up @@ -263,17 +263,11 @@
border-radius: 0.5rem;
outline: none;
color: $white;
transition: border-color 0.2s ease;

&:focus {
padding: 1rem;
margin-right: 0.25rem;
width: 24rem;
height: 3.5rem;
border: 0.5px solid $white;
background: transparent;
border-radius: 0.5rem;
border: 1px solid $white;
outline-width: 0;
color: $white;
}
}

Expand All @@ -286,6 +280,35 @@
border: none;
}

.newsletter-container {
display: flex;
align-items: flex-start;
flex-direction: column;
}

.newsletter-input-row {
display: flex;
align-items: center;
}

.newsletter-message {
margin-top: 0.5rem;
font-size: 0.9rem;
min-height: 1.5rem;
}
Comment on lines +283 to +298
Copy link

Copilot AI Dec 17, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

These CSS classes (newsletter-container, newsletter-input-row, and newsletter-message) are not used anywhere in the codebase. They appear to be intended for restructuring the newsletter form in layouts/partials/footer.html, but the HTML template has not been updated to use them. This introduces dead code that will not be utilized. Consider either removing these unused classes or ensuring the corresponding HTML changes are included in this PR to maintain code consistency and avoid confusion.

Copilot uses AI. Check for mistakes.

.visually-hidden {
position: absolute;
width: 1px;
height: 1px;
margin: -1px;
padding: 0;
overflow: hidden;
clip: rect(0, 0, 0, 0);
white-space: nowrap;
border: 0;
}
Comment on lines +300 to +310
Copy link

Copilot AI Dec 17, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The visually-hidden class is already being used in layouts/partials/video-section-related.html but is only now being defined in the footer styles. This creates a scoping issue where the class will only work if footer styles are loaded. Consider moving this utility class to a global stylesheet (like _styles_project.scss or _elements_project.scss) so it's available site-wide and not tied to footer-specific styles.

Copilot uses AI. Check for mistakes.

.footer-hr {
width: 100%;
color: $white;
Expand Down Expand Up @@ -587,4 +610,4 @@
.footer-company{
margin-left: 5px;
}
}
}