diff options
| author | madelinegr <monika_hedman@brown.edu> | 2019-06-18 18:24:51 -0400 |
|---|---|---|
| committer | madelinegr <monika_hedman@brown.edu> | 2019-06-18 18:24:51 -0400 |
| commit | f3f76fc25a9e39d4c08618fb601b5e66ce62e235 (patch) | |
| tree | a68fc930a8827c06805435e67aa8bf716fb9fb8a /src/client/views/search/CheckBox.scss | |
| parent | 8b4bb0e1cc0ebec92403f163937f821403f970c5 (diff) | |
end of day 6/18
Diffstat (limited to 'src/client/views/search/CheckBox.scss')
| -rw-r--r-- | src/client/views/search/CheckBox.scss | 19 |
1 files changed, 17 insertions, 2 deletions
diff --git a/src/client/views/search/CheckBox.scss b/src/client/views/search/CheckBox.scss index 8eee9176b..f7652d830 100644 --- a/src/client/views/search/CheckBox.scss +++ b/src/client/views/search/CheckBox.scss @@ -1,8 +1,15 @@ -@import "../globalCssVariables"; +@import "../globalCssVariables"; .checkbox { display: flex; + .outer { + display: flex; + position: relative; + justify-content: center; + align-items: center; + } + .check-box { z-index: 900; position: relative; @@ -15,13 +22,20 @@ border-width: 2px; } + .check-container { + width: 40px; + height: 40px; + position: absolute; + z-index: 1000; + } + .box:hover { background-color: $intermediate-color; } .checkmark { z-index: 1000; - position: relative; + position: absolute; fill-opacity: 0; stroke-width: 4px; stroke: white; @@ -31,4 +45,5 @@ .checkbox-title { text-transform: uppercase; + margin-left: 10px; }
\ No newline at end of file |
