Skip to content

Commit

Permalink
Added home link
Browse files Browse the repository at this point in the history
  • Loading branch information
bmingles committed Jan 25, 2024
1 parent 40278c6 commit 074cac2
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 12 deletions.
22 changes: 12 additions & 10 deletions src/components/CheckList.module.scss
Original file line number Diff line number Diff line change
Expand Up @@ -7,19 +7,21 @@
grid-template-rows: auto 1fr;
height: 100vh;

> span:first-of-type {
display: grid;
a {
display: flex;
align-items: center;
grid-template-columns: auto auto 1fr;
color: unset;
gap: 2px;
box-shadow: 0 0px 20px -5px var(--check-list-color-shadow);
font-size: 1.2em;
text-decoration: none;
}

> span:first-of-type {
display: flex;
align-items: center;
box-shadow: 0 0px 10px -5px var(--check-list-color-shadow);
padding: var(--check-list-item-pad);
> span {
font-size: 1.2em;
}
:last-child {
justify-self: end;
}
justify-content: space-between;
}

ul {
Expand Down
6 changes: 4 additions & 2 deletions src/components/CheckList.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,10 @@ export function CheckList() {
return (
<div class={styles.CheckList}>
<span>
<img src={logo} />
<span>ible Plan</span>
<a href="/">
<img src={logo} />
<span>ible Plan</span>
</a>
<CheckBox
isChecked={showCompleted()}
onChange={() =>
Expand Down

0 comments on commit 074cac2

Please sign in to comment.