Skip to content

Commit

Permalink
fix shadow
Browse files Browse the repository at this point in the history
  • Loading branch information
arjanfrans committed Jan 8, 2024
1 parent 848d6d9 commit aae9d97
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<script type="module" src="/src/main.ts"></script>
</head>

<body>
<body style="background-color: #00ff00">
<div style="display: flex; justify-content: center; flex-direction: column; row-gap: 25px; margin: 25px;">
<baseball-scoreboard
mode="foreground"
Expand Down
10 changes: 5 additions & 5 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@hardbulls/baseball-scoreboard",
"version": "1.2.0",
"version": "1.2.1",
"private": false,
"description": "Web Component that displays a baseball scoreboard for usage in live streams.",
"main": "dist/main.mjs",
Expand Down
File renamed without changes.
4 changes: 2 additions & 2 deletions src/TeamNames.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ interface Props {
export const TeamNames = ({ awayName, homeName, fontClass }: Props) => {
return html`
<div class="teams-container ${fontClass}">
<div style="display: flex;" class="score-row">
<div class="score-name background-away">
<div style="display: flex;" class="score-row background-away">
<div class="score-name">
${awayName && html`<span>${awayName}</span>`}
</div>
</div>
Expand Down
2 changes: 1 addition & 1 deletion src/baseball-scoreboard.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import { Style } from "./style.ts";
import { Counts } from "./Counts.ts";
import { InningVertical } from "./InningVertical.ts";
import { Score } from "./Score.ts";
import { LeagueLogo } from "./Logo.ts";
import { LeagueLogo } from "./LeagueLogo.ts";
import { TeamLogos } from "./TeamLogos.ts";
import { TeamNames } from "./TeamNames.ts";
import { BaseballStyle } from "./baseball-style.ts";
Expand Down

0 comments on commit aae9d97

Please sign in to comment.