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

Add arrow to dropup menu #3

parent dc97a8e4
Branches
No related merge requests found
......@@ -258,6 +258,20 @@ header a, header button {
.selectTitle {
width: 120px;
position: relative;
}
.selectTitle::after {
content: '';
width: 0;
height: 0;
border-style: solid;
border-width: 0 8px 10px 8px;
border-color: transparent transparent #444 transparent;
position: absolute;
right: 15px;
/* center arrow vertically 50% - half of height */
bottom: calc(50% - 4px);
}
.selectOptionsWrapper {
......
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