Skip to content

Commit

Permalink
fix styles
Browse files Browse the repository at this point in the history
  • Loading branch information
demiazz committed Nov 11, 2024
1 parent 8a99d41 commit 135471a
Showing 1 changed file with 12 additions and 3 deletions.
15 changes: 12 additions & 3 deletions web/components/Application/Application.css.ts
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,10 @@ export const title = style({

color: vars.interactive.highlight,

textShadow: `0 0 5px ${vars.interactive.highlight}`,
textShadow: `
0 0 2px ${vars.interactive.highlight},
0 0 5px ${vars.interactive.highlight}
`,
});

export const years = style({
Expand All @@ -35,14 +38,20 @@ export const subTitle = style({
color: vars.interactive.highlight,

textAlign: "right",
textShadow: `0 0 5px ${vars.interactive.highlight}`,
textShadow: `
0 0 2px ${vars.interactive.highlight},
0 0 5px ${vars.interactive.highlight}
`,
});

export const subTitleDelimiter = style({
color: vars.interactive.inactive,

textAlign: "right",
textShadow: `0 0 5px ${vars.interactive.inactive}`,
textShadow: `
0 0 2px ${vars.interactive.inactive},
0 0 5px ${vars.interactive.inactive}
`,
});

export const days = style({
Expand Down

0 comments on commit 135471a

Please sign in to comment.