Skip to content

Commit

Permalink
feat: fix button to end
Browse files Browse the repository at this point in the history
  • Loading branch information
NoeTerrier committed Sep 14, 2024
1 parent 362fbc6 commit af155e5
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions app/src/pages/save-the-date.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,6 @@ export default function SaveTheDatePage(
style={{
height: "2rem",
margin: "0 0.5rem 1rem 0.5rem",
filter: "invert(100%)",
}}
/>
</a>
Expand Down Expand Up @@ -216,7 +215,7 @@ function StdCellComponent(cell: SaveTheDateCell) {
}).format(myDate);

return (
<tr>
<tr key={cell.id}>
<td
key={translation.title}
style={{
Expand Down Expand Up @@ -258,7 +257,7 @@ function StdCellComponent(cell: SaveTheDateCell) {
</tr>
{cell.url ? (
<tr>
<td style={{ display: "flex", justifyContent: "end" }}>
<td style={{ textAlign: "end" }}>
<a
href={cell.url}
style={{
Expand Down

0 comments on commit af155e5

Please sign in to comment.