From fad0a6070c81e95c1d871d8a7cf2c970c9cd859a Mon Sep 17 00:00:00 2001 From: Developer 02 Date: Mon, 22 Jul 2024 10:07:44 +0200 Subject: [PATCH] refactor(_Layout.cshtml.css): convert px to rem units --- EnvelopeGenerator.Web/Views/Shared/_Layout.cshtml.css | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/EnvelopeGenerator.Web/Views/Shared/_Layout.cshtml.css b/EnvelopeGenerator.Web/Views/Shared/_Layout.cshtml.css index a72cbeaf..5c43bd4f 100644 --- a/EnvelopeGenerator.Web/Views/Shared/_Layout.cshtml.css +++ b/EnvelopeGenerator.Web/Views/Shared/_Layout.cshtml.css @@ -24,10 +24,10 @@ a { } .border-top { - border-top: 1px solid #e5e5e5; + border-top: 0.063rem solid #e5e5e5; } .border-bottom { - border-bottom: 1px solid #e5e5e5; + border-bottom: 0.063rem solid #e5e5e5; } .box-shadow { @@ -44,5 +44,5 @@ button.accept-policy { bottom: 0; width: 100%; white-space: nowrap; - line-height: 60px; + line-height: 3.75rem; }