diff options
| author | Bob Zeleznik <zzzman@gmail.com> | 2019-10-11 01:38:48 -0400 |
|---|---|---|
| committer | Bob Zeleznik <zzzman@gmail.com> | 2019-10-11 01:38:48 -0400 |
| commit | a73a72586c72cd620c16dd7bc0baad88c8e49a34 (patch) | |
| tree | b5023f9fd8a6b40c192574b04fb7bfd3349df362 /src/client/views/search/SearchBox.scss | |
| parent | 9505eda799fdf3b0cd2e6bde2d80c18731caee2c (diff) | |
switching search around to left-hand side.
Diffstat (limited to 'src/client/views/search/SearchBox.scss')
| -rw-r--r-- | src/client/views/search/SearchBox.scss | 17 |
1 files changed, 13 insertions, 4 deletions
diff --git a/src/client/views/search/SearchBox.scss b/src/client/views/search/SearchBox.scss index 0dd4d3dc5..bc11604a5 100644 --- a/src/client/views/search/SearchBox.scss +++ b/src/client/views/search/SearchBox.scss @@ -1,6 +1,15 @@ @import "../globalCssVariables"; @import "./NaviconButton.scss"; +.searchBox-container { + display: flex; + flex-direction: column; + width:100%; + height:100%; + position: absolute; + font-size: 10px; + line-height: 1; +} .searchBox-bar { height: 32px; display: flex; @@ -49,17 +58,17 @@ } .searchBox-quickFilter { - width: 500px; - margin-left: 25px; + width: 100%; + height: 40px; margin-top: 10px; } .searchBox-results { - margin-right: 136px; + display:flex; + flex-direction: column; top: 300px; display: flex; flex-direction: column; - margin-right: 72px; // height: 560px; height: 100%; // overflow: hidden; |
