Skip to content

Commit

Permalink
Issue #10: WIP: Bringing tabs up to date w/ theme of other demos.
Browse files Browse the repository at this point in the history
  • Loading branch information
patricknelson committed Sep 30, 2023
1 parent 6363a2c commit 8231c07
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion demo/src/App.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@
}
a.current {
color: #ff3e00;
color: var(--orange);
text-decoration: underline;
}
</style>
1 change: 1 addition & 0 deletions demo/src/app.css
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@
-webkit-text-size-adjust: 100%;

--light-gray: #f9f9f9;
--orange: #ff3e00; /* you happy you have svelte-retag? 🧀 */
}

html {
Expand Down
2 changes: 1 addition & 1 deletion demo/src/lib/tabs/TabButton.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
}
.selected {
border-bottom: 2px solid teal;
border-bottom: 2px solid var(--orange);
color: #333;
}
</style>
Expand Down
2 changes: 1 addition & 1 deletion demo/src/lib/tabs/TabList.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,6 @@

<style>
.tab-list {
border-bottom: 1px solid teal;
border-bottom: 1px solid var(--orange);
}
</style>

0 comments on commit 8231c07

Please sign in to comment.