Skip to content

Commit

Permalink
Refactor font-family declaration for improved readability and consist…
Browse files Browse the repository at this point in the history
…ency; fix syntax in ZenPinnedTabsStorage
  • Loading branch information
mauro-balades committed Jan 17, 2025
1 parent 10906f9 commit 74a4efd
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 2 deletions.
10 changes: 9 additions & 1 deletion src/browser/base/content/zen-styles/zen-theme.css
Original file line number Diff line number Diff line change
Expand Up @@ -171,7 +171,15 @@
--tab-selected-shadow: 0 0 1px 1px rgba(0, 0, 0, 0.1) !important;

/** Other theme-related styles */
font-family: SF Pro,ui-sans-serif,system-ui,sans-serif,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol,Noto Color Emoji;
font-family:
SF Pro,
ui-sans-serif,
system-ui,
sans-serif,
Apple Color Emoji,
Segoe UI Emoji,
Segoe UI Symbol,
Noto Color Emoji;
}

@media (prefers-color-scheme: dark) {
Expand Down
2 changes: 1 addition & 1 deletion src/browser/base/zen-components/ZenPinnedTabsStorage.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -363,4 +363,4 @@ var ZenPinnedTabsStorage = {
ZenPinnedTabsStorage.promiseInitialized = new Promise((resolve) => {
ZenPinnedTabsStorage._resolveInitialized = resolve;
ZenPinnedTabsStorage.init();
})
});

0 comments on commit 74a4efd

Please sign in to comment.