From a4ea3e813751950aba1d6edd5d068ed2c155ea65 Mon Sep 17 00:00:00 2001 From: Anthony Talarico Date: Wed, 17 May 2017 09:13:07 -0400 Subject: [PATCH] fixing syntax error selector value was changed accidentally, fixed the value from -o to -1px for the header search input position --- css/app.css | 2 +- scss/_page.header.scss | 3 +-- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/css/app.css b/css/app.css index c81b77f..95927df 100644 --- a/css/app.css +++ b/css/app.css @@ -6347,7 +6347,7 @@ header { background: #FFFFFF; } header .search-input { position: relative; - top: -o; + top: -1px; height: 19px; width: 0; border: none; diff --git a/scss/_page.header.scss b/scss/_page.header.scss index 1767da7..f27e1af 100644 --- a/scss/_page.header.scss +++ b/scss/_page.header.scss @@ -77,7 +77,7 @@ header { } .search-input{ position: relative; - top: -o; + top: -1px; height: 19px; width: 0; border: none; @@ -113,7 +113,6 @@ header { // top: -10px; // border-radius: 0.35em; // margin: 0 0 0 -25px; -// // &:before { // content: ""; // display: inline-block; -- 2.17.1