diff options
author | Eric Bailey <git@esb.lol> | 2024-06-18 13:37:14 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-06-18 13:37:14 -0500 |
commit | 35e54e24a0b08ce0f2e3389aeb4fb0f29778170e (patch) | |
tree | 18cbb56282a656899020cae19c6fd7f773ea9764 /src/alf/atoms.ts | |
parent | 11065174813a322e5a53097c0ea309fd8e613cc7 (diff) | |
download | voidsky-35e54e24a0b08ce0f2e3389aeb4fb0f29778170e.tar.zst |
Explore fixes (#4540)
* Use safe check, check for next page, handle varied lengths * Fix border width * Move safe check * Add font_heavy and use it on the explore page headers --------- Co-authored-by: Paul Frazee <pfrazee@gmail.com>
Diffstat (limited to 'src/alf/atoms.ts')
-rw-r--r-- | src/alf/atoms.ts | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/alf/atoms.ts b/src/alf/atoms.ts index 1ccb0460c..1dc2dfa7b 100644 --- a/src/alf/atoms.ts +++ b/src/alf/atoms.ts @@ -267,6 +267,9 @@ export const atoms = { font_bold: { fontWeight: tokens.fontWeight.bold, }, + font_heavy: { + fontWeight: tokens.fontWeight.heavy, + }, italic: { fontStyle: 'italic', }, |