mirror of
https://github.com/freqtrade/frequi.git
synced 2024-11-11 02:33:51 +00:00
Improve icon for dark mode
This commit is contained in:
parent
65117a7f5f
commit
29abcd0720
BIN
src/assets/freqtrade-logo-mask.png
Normal file
BIN
src/assets/freqtrade-logo-mask.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 37 KiB |
|
@ -1,5 +1,9 @@
|
||||||
// global main style
|
// global main style
|
||||||
|
|
||||||
|
.logo-svg {
|
||||||
|
background-color: #000000;
|
||||||
|
}
|
||||||
|
|
||||||
[data-theme="dark"] {
|
[data-theme="dark"] {
|
||||||
$bg-dark: #3c3c3c;
|
$bg-dark: #3c3c3c;
|
||||||
$bg-darker: darken($bg-dark, 5%);
|
$bg-darker: darken($bg-dark, 5%);
|
||||||
|
@ -12,7 +16,7 @@
|
||||||
color: $fg-color;
|
color: $fg-color;
|
||||||
}
|
}
|
||||||
.card {
|
.card {
|
||||||
border-color: $bg-dark;
|
border-color: lighten($bg-dark, 10%);
|
||||||
}
|
}
|
||||||
.card-body {
|
.card-body {
|
||||||
background: $bg-dark;
|
background: $bg-dark;
|
||||||
|
@ -65,6 +69,9 @@
|
||||||
color: $fg-color;
|
color: $fg-color;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.logo-svg {
|
||||||
|
background-color: $fg-color;
|
||||||
|
}
|
||||||
textarea {
|
textarea {
|
||||||
color: $fg-color;
|
color: $fg-color;
|
||||||
background: $bg-dark;
|
background: $bg-dark;
|
||||||
|
@ -72,6 +79,8 @@
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
html.ft-theme-transition,
|
html.ft-theme-transition,
|
||||||
html.ft-theme-transition *,
|
html.ft-theme-transition *,
|
||||||
html.ft-theme-transition *:before,
|
html.ft-theme-transition *:before,
|
||||||
|
|
|
@ -1,6 +1,7 @@
|
||||||
<template>
|
<template>
|
||||||
<div class="home">
|
<div class="home">
|
||||||
<img alt="Freqtrade logo" src="../assets/freqtrade-logo.png" />
|
<!-- <img alt="Freqtrade logo" src="../assets/freqtrade-logo.png" width="450px" class="my-5" /> -->
|
||||||
|
<div alt="Freqtrade logo" class="logo-svg my-5 mx-auto" />
|
||||||
<div>
|
<div>
|
||||||
<h1>Welcome to the Freqtrade UI</h1>
|
<h1>Welcome to the Freqtrade UI</h1>
|
||||||
</div>
|
</div>
|
||||||
|
@ -26,4 +27,11 @@ export default class Home extends Vue {}
|
||||||
.home {
|
.home {
|
||||||
margin-top: 1.5em;
|
margin-top: 1.5em;
|
||||||
}
|
}
|
||||||
|
.logo-svg {
|
||||||
|
-webkit-mask: url(../assets/freqtrade-logo-mask.png) no-repeat center;
|
||||||
|
mask: url(../assets/freqtrade-logo-mask.png) no-repeat center;
|
||||||
|
mask-size: contain;
|
||||||
|
width: 250px;
|
||||||
|
height: 250px;
|
||||||
|
}
|
||||||
</style>
|
</style>
|
||||||
|
|
Loading…
Reference in New Issue
Block a user