1
mirror of https://github.com/jakejarvis/jarv.is.git synced 2025-07-21 07:21:17 -04:00

use stitches-normalize 🧵

https://github.com/jakejarvis/stitches-normalize
This commit is contained in:
2022-03-06 11:24:58 -05:00
parent 9ac0b828d1
commit 34fccfefc3
12 changed files with 111 additions and 180 deletions

View File

@@ -11,7 +11,9 @@ const Wrapper = styled("footer", {
borderTop: "1px solid $kindaLight",
backgroundColor: "$backgroundOuter",
color: "$mediumDark",
transition: "color 0.25s ease, background 0.25s ease, border 0.25s ease",
// light-dark theme switch fading
transition: "background 0.25s ease, border 0.25s ease",
"@medium": {
padding: "1em 1.25em",
@@ -50,6 +52,9 @@ const ViewSourceLink = styled(Link, {
borderBottom: "1px solid",
borderColor: "$light",
// light-dark theme switch fading
transition: "border 0.25s ease",
"&:hover": {
borderColor: "$kindaLight",
},