diff --git a/src/pages/News/NewsPublic.module.css b/src/pages/News/NewsPublic.module.css index 808c0e7..684cd54 100644 --- a/src/pages/News/NewsPublic.module.css +++ b/src/pages/News/NewsPublic.module.css @@ -1,7 +1,9 @@ .searchInputRow { width: 72%; margin: 0 auto; + display: -ms-flexbox; display: flex; + -ms-flex-pack: end; justify-content: flex-end; .searchInput { @@ -12,6 +14,7 @@ border: .0625rem solid #B6C0CB; padding: 0 1rem; position: relative; + box-sizing: border-box; input { width: 100%; @@ -30,6 +33,7 @@ position: absolute; right: 1rem; top: 50%; + -ms-transform: translateY(-50%); transform: translateY(-50%); font-size: 1rem; color: #333; @@ -120,7 +124,8 @@ @media (max-width: 48rem) { .searchInputRow { - justify-content: stretch; + -ms-flex-pack: start; + justify-content: flex-start; } .searchInputRow .searchInput { @@ -145,4 +150,4 @@ font-size: 1rem; line-height: 1.5rem; } -} \ No newline at end of file +}