+
{/if}
-
-
diff --git a/src/styles/sprinkles.css.ts b/src/styles/sprinkles.css.ts
index 30e34cc..f44b095 100644
--- a/src/styles/sprinkles.css.ts
+++ b/src/styles/sprinkles.css.ts
@@ -32,7 +32,9 @@ const responsiveProperties = defineProperties({
'space-between',
],
alignItems: ['stretch', 'flex-start', 'center', 'flex-end'],
+ flex: ['1'],
textAlign: ['left', 'center', 'right', 'justify', 'start'],
+ textShadow: vars.textShadow,
paddingTop: vars.space,
paddingBottom: vars.space,
paddingLeft: vars.space,
diff --git a/src/styles/vars.css.ts b/src/styles/vars.css.ts
index a57f579..24e4a17 100644
--- a/src/styles/vars.css.ts
+++ b/src/styles/vars.css.ts
@@ -87,6 +87,7 @@ export const vars = createGlobalTheme(':root', {
'6x': fontSizeScale(6),
},
lineHeight: {
+ none: '0',
'0x': lineHeightScale(0),
'1x': lineHeightScale(1),
'2x': lineHeightScale(2),
@@ -99,6 +100,16 @@ export const vars = createGlobalTheme(':root', {
normal: 'normal',
bold: 'bold',
},
+ textShadow: {
+ menuLinkShadow: `0.02em 0.02em 0.03em ${transparentize(
+ 0.7,
+ colors.midnightBlue
+ )}`,
+ menuActiveLinkShadow: `0.01em 0.01em 0.05em ${transparentize(
+ 0.1,
+ colors.midnightBlue
+ )}`,
+ },
width: {
s: '400px',
m: '700px',