Skip to content
Snippets Groups Projects
Commit 3717121c authored by Lillian Gray's avatar Lillian Gray
Browse files

Fix dimentions with addition of scrollbar #3

parent 318394d0
Branches
...@@ -248,7 +248,6 @@ header a, header button { ...@@ -248,7 +248,6 @@ header a, header button {
.selectTitle, .selectOption { .selectTitle, .selectOption {
padding: 5px 15px; padding: 5px 15px;
width: 200px;
height: 20px; height: 20px;
} }
...@@ -258,13 +257,18 @@ header a, header button { ...@@ -258,13 +257,18 @@ header a, header button {
background-color: #FFF; background-color: #FFF;
} }
.selectTitle {
width: 200px;
}
.selectOptionsWrapper { .selectOptionsWrapper {
z-index:1; z-index:1;
position: absolute; position: absolute;
bottom: 20px; bottom: 20px;
display: none; display: none;
height: 180px; max-height: 180px;
overflow-y: scroll; overflow-y: scroll;
width: 230px;
} }
.selectOption { .selectOption {
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment