Skip to content

Commit

Permalink
Update Application.astro
Browse files Browse the repository at this point in the history
  • Loading branch information
ten1seven committed Oct 31, 2024
1 parent 981754d commit 458f343
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions src/layouts/Application.astro
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ import '../styles/global.css';
})()}

<!DOCTYPE html>
<html lang="en" class="scroll-smooth">
<html lang="en" class="scroll-smooth focus:scroll-auto">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
Expand Down Expand Up @@ -109,7 +109,8 @@ import '../styles/global.css';
--footerSocialBorderHoverColor: {finalColors.footerSocialBorderHoverColor};
}

body, footer {
body,
footer {
background-color: var(--backgroundColor);
color: var(--textColor);
}
Expand All @@ -134,7 +135,8 @@ import '../styles/global.css';
border-color: var(--footerSocialBorderColor);
}

.footer-social:hover, .footer-social:focus {
.footer-social:hover,
.footer-social:focus {
border-color: var(--footerSocialBorderHoverColor);
color: var(--footerSocialBorderHoverColor);
}
Expand Down

0 comments on commit 458f343

Please sign in to comment.