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

fix hcaptcha bugginess

This commit is contained in:
2022-04-17 14:52:59 -04:00
parent fa968dbcd2
commit a632246975
6 changed files with 43 additions and 41 deletions

View File

@@ -10,13 +10,13 @@ const Image = styled(NextImage, {
display: "block",
width: "50px",
height: "50px",
border: "1px solid $light !important",
border: "1px solid $light",
borderRadius: "50%",
"@medium": {
width: "70px",
height: "70px",
borderWidth: "2px !important",
borderWidth: "2px",
},
});
@@ -31,7 +31,7 @@ const Link = styled("a", {
"@medium": {
[`${Image}`]: {
borderColor: "$linkUnderline !important",
borderColor: "$linkUnderline",
},
},
},