fix: quote fixes and light theme search bar

This commit is contained in:
David Ralph
2021-05-03 10:50:00 +01:00
parent 7470ca9e3a
commit 7628e769be
4 changed files with 41 additions and 6 deletions

View File

@@ -1,7 +1,8 @@
.suggestions {
text-align: left;
font-size: calc(5px + 1.2vmin);
background-color: rgba(0, 0, 0, 0.5);
background-color: rgba(255, 255, 255, 0.8);
color: black;
border-top-width: 0;
list-style: none;
margin-top: 40px;
@@ -19,7 +20,7 @@
padding-left: 20px;
&:hover {
background-color: rgba(0, 0, 0, 0.5);
background-color: rgba(255, 255, 255, 0.8);
cursor: pointer;
}
}
@@ -36,3 +37,14 @@
margin-top: 50px;
}
}
.dark .suggestions {
background-color: rgba(0, 0, 0, 0.5);
color: white;
li {
&:hover {
background-color: rgba(0, 0, 0, 0.5);
}
}
}