1
0
mirror of https://github.com/amir20/dozzle.git synced 2025-12-25 23:03:47 +01:00

Adds black to logo

This commit is contained in:
Amir Raminfar
2020-06-28 16:29:42 -07:00
parent 63d8ec3e13
commit 200f997239
3 changed files with 5 additions and 5 deletions

View File

@@ -89,8 +89,7 @@ aside {
.logo {
width: 82px;
height: 36px;
fill: #ffdd57;
filter: drop-shadow(0 0px 0px rgba(0, 0, 0, 0.8));
fill: var(--logo-color);
}
}
</style>

View File

@@ -93,8 +93,7 @@ li.exited a {
.logo {
width: 122px;
height: 54px;
fill: #ffdd57;
filter: drop-shadow(0 0px 0px rgba(0, 0, 0, 0.8));
fill: var(--logo-color);
}
.will-append-container.icon {

View File

@@ -31,6 +31,7 @@ html {
--border-color: #{$grey-darker};
--border-hover-color: var(--secondary-color);
--logo-color: var(--secondary-color);
--primary-color: #{$turquoise};
--secondary-color: #{$yellow};
@@ -52,6 +53,7 @@ html {
--border-color: #{$grey-lighter};
--border-hover-color: var(--secondary-color);
--logo-color: var(--body-color);
--primary-color: #{$turquoise};
--secondary-color: #d8f0ca;
@@ -106,7 +108,7 @@ html.has-custom-scrollbars {
color: #fff;
border-color: transparent;
&:hover {
border-color: rgb(255, 221, 87) !important;
border-color: var(--border-hover-color) !important;
background: rgba(0, 0, 0, 0.8) !important;
color: #fff !important;
}