From a0d4af5c5f7a9a1547e1533ffefba2bd7ed68c4a Mon Sep 17 00:00:00 2001 From: Samuel Newman Date: Thu, 9 Apr 2026 06:12:20 -0700 Subject: [PATCH] Add font smoothing stuff to embed (#10204) --- bskyembed/src/index.css | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/bskyembed/src/index.css b/bskyembed/src/index.css index 91ea9d7ee6..230ba30b62 100644 --- a/bskyembed/src/index.css +++ b/bskyembed/src/index.css @@ -2,6 +2,12 @@ @tailwind components; @tailwind utilities; +:root { + -webkit-font-smoothing: antialiased; + -moz-osx-font-smoothing: grayscale; + text-rendering: optimizeLegibility; +} + .break-word { word-break: break-word; }