Added stickers to modal.

This commit is contained in:
Lucid Kobold
2022-01-07 10:55:32 -06:00
parent dd1945a4ef
commit 934cd98e3c
2 changed files with 60 additions and 8 deletions

View File

@@ -14,7 +14,7 @@ const buttonStyles = {
sizes: {},
// styles for different visual variants ("outline", "solid")
variants: {
contactPrimary: (props: Dict<never> | StyleFunctionProps) => ({
primary: (props: Dict<never> | StyleFunctionProps) => ({
bg: "rgba(255, 255, 255, .15)",
fontSize: "xl",
p: "2",
@@ -25,7 +25,7 @@ const buttonStyles = {
)(props)
}
}),
contactSecondary: (props: Dict<never> | StyleFunctionProps) => ({
secondary: (props: Dict<never> | StyleFunctionProps) => ({
bg: "brand.primary",
fontSize: "xl",
p: "2",
@@ -36,6 +36,18 @@ const buttonStyles = {
)(props)
}
}),
stickerButton: (props: Dict<never> | StyleFunctionProps) => ({
bg: "transparent",
fontSize: "4rem",
px: 2,
py: 14,
_hover: {
bg: mode(
whiten("brand.secondary", 20),
darken("brand.secondary", 20)
)(props)
}
}),
project: (props: Dict<never> | StyleFunctionProps) => ({
bg: "transparent",
fontSize: "md",