From 2a1287acb97c3d4b1507f42c1839c6a7de874af6 Mon Sep 17 00:00:00 2001 From: Mark Otto Date: Sun, 14 Dec 2025 20:11:08 -0800 Subject: [PATCH] Add font-feature-settings inherit to form elements Ensure form elements inherit font-feature-settings from their parent, and simplify font-size to use inherit directly. --- scss/content/_reboot.scss | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/scss/content/_reboot.scss b/scss/content/_reboot.scss index 14e9ecd2f8..c9b931fd83 100644 --- a/scss/content/_reboot.scss +++ b/scss/content/_reboot.scss @@ -430,7 +430,8 @@ textarea { margin: 0; // 1 font-family: inherit; - @include font-size(inherit); + font-size: inherit; + font-feature-settings: inherit; line-height: inherit; } -- 2.47.3