From 141befe4f7408df9df5636e7515131ed9bbf227a Mon Sep 17 00:00:00 2001 From: Martin Leveille Date: Mon, 9 Jan 2023 08:49:45 -0500 Subject: [PATCH] Updated module asset bundle --- .../site/bundles/site/src/css/base/preflight.pcss | 12 ++++-------- 1 file changed, 4 insertions(+), 8 deletions(-) diff --git a/modules/site/bundles/site/src/css/base/preflight.pcss b/modules/site/bundles/site/src/css/base/preflight.pcss index 666f394..c802fb5 100644 --- a/modules/site/bundles/site/src/css/base/preflight.pcss +++ b/modules/site/bundles/site/src/css/base/preflight.pcss @@ -27,18 +27,14 @@ 3. Use a more readable tab size. 4. Use the user's configured `sans` font-family by default. 5. Use the user's configured `sans` font-feature-settings by default. + 6. Remove the margin in all browsers. */ line-height: 1.5; /* 1 */ -webkit-text-size-adjust: 100%; /* 2 */ /* 3 */ tab-size: 4; /* 3 */ font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; /* 4 */ font-feature-settings: normal; /* 5 */ - /* - 1. Remove the margin in all browsers. - 2. Inherit line-height from `html` so users can set them as a class directly on the `html` element. - */ - margin: 0; /* 1 */ - line-height: inherit; /* 2 */ + margin: 0; /* 6 */ /* 1. Add the correct height in Firefox. 2. Correct the inheritance of border color in Firefox. (https://bugzilla.mozilla.org/show_bug.cgi?id=190655) @@ -312,10 +308,10 @@ .tailwind { .flex { - align-items: inherit; - -webkit-align-items: inherit; align-content: inherit; -webkit-align-content: inherit; + align-items: inherit; + -webkit-align-items: inherit; gap: unset; }