From 14711f44652b2d50b037bf1e44f39fa521495703 Mon Sep 17 00:00:00 2001 From: Ryan Heisler Date: Sat, 20 Jan 2024 13:55:22 -0500 Subject: [PATCH 1/2] Fix poorly-supported css value --- src/pages/ann-arbor-law-summary/AnnArborLawSummary.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pages/ann-arbor-law-summary/AnnArborLawSummary.css b/src/pages/ann-arbor-law-summary/AnnArborLawSummary.css index 3eec3af..dff3a31 100644 --- a/src/pages/ann-arbor-law-summary/AnnArborLawSummary.css +++ b/src/pages/ann-arbor-law-summary/AnnArborLawSummary.css @@ -30,7 +30,7 @@ .citation-link-container { display: flex; - justify-content: end; + justify-content: flex-end; text-align: right; } From 2835a2ac8071517ba72c9105aa49f414e291c542 Mon Sep 17 00:00:00 2001 From: Ryan Heisler Date: Sat, 20 Jan 2024 14:02:44 -0500 Subject: [PATCH 2/2] Remove browser specific prefixes from source code --- src/components/form/Form.css | 25 ------------------- .../userMessage/UserMessageNotification.css | 10 +------- src/index.css | 2 -- 3 files changed, 1 insertion(+), 36 deletions(-) diff --git a/src/components/form/Form.css b/src/components/form/Form.css index 8dd7776..2128dc9 100644 --- a/src/components/form/Form.css +++ b/src/components/form/Form.css @@ -1,37 +1,12 @@ -/* -* Prefixed by https://autoprefixer.github.io -* PostCSS: v8.4.14, -* Autoprefixer: v10.4.7 -* Browsers: >0.01% and not dead and not op_mini all -*/ - .form-container { - -moz-box-direction: normal; - -webkit-box-direction: normal; - -moz-box-orient: vertical; - -webkit-box-orient: vertical; - display: -webkit-box; - display: -webkit-flex; - display: -moz-box; display: flex; - -webkit-flex-flow: column nowrap; flex-flow: column nowrap; height: 100%; } .form { - -moz-box-direction: normal; - -webkit-box-direction: normal; - -moz-box-orient: vertical; - -webkit-box-orient: vertical; - -moz-box-sizing: border-box; box-sizing: border-box; - display: -moz-box; display: flex; - - display: -webkit-box; - display: -webkit-flex; - -webkit-flex-flow: column nowrap; flex-flow: column nowrap; font-weight: normal; height: 100%; diff --git a/src/components/userMessage/UserMessageNotification.css b/src/components/userMessage/UserMessageNotification.css index 75bbb63..39d23a8 100644 --- a/src/components/userMessage/UserMessageNotification.css +++ b/src/components/userMessage/UserMessageNotification.css @@ -1,15 +1,7 @@ .user-message { - -webkit-align-items: center; align-items: center; - -moz-box-align: center; - -webkit-box-align: center; - -moz-box-sizing: border-box; box-sizing: border-box; - display: -webkit-box; - display: -webkit-flex; - display: -moz-box; display: flex; - -webkit-flex-wrap: nowrap; flex-wrap: nowrap; margin-bottom: 1.5rem; padding: 1rem; @@ -32,4 +24,4 @@ .error:focus { outline: 3px dashed #4f2727; -} \ No newline at end of file +} diff --git a/src/index.css b/src/index.css index f8351cc..f61174b 100644 --- a/src/index.css +++ b/src/index.css @@ -10,9 +10,7 @@ a:focus, a:hover { body { background-color: #eeeeec; font-family: Karla, sans-serif; - -webkit-font-smoothing: antialiased; margin: 0; - -moz-osx-font-smoothing: grayscale; } :focus {