themeclean : add default custom (selection + border remover)

This commit is contained in:
Daniel Muyshond 2020-11-04 12:47:17 +01:00
parent f490069070
commit d867c36c38
1 changed files with 14 additions and 1 deletions

View File

@ -1 +1,14 @@
@charset "UTF-8";
@charset "UTF-8";
/* Custom selection color because that can be done and it's cool */
::selection {
color: white;
background-color: $primary-color;
}
/* remove annoying border I can't remove with EO vars at the moment */
div.links-list ul > li:not(:last-child) {
border-bottom: 0;
}