Browse Source

update theme + framework

master
Slixe 2 years ago
parent
commit
c80353d4c4
3 changed files with 8 additions and 8 deletions
  1. +2
    -2
      build.gradle
  2. +2
    -2
      dero-stats/public/index.html
  3. +4
    -4
      dero-stats/src/main.js

+ 2
- 2
build.gradle View File

@@ -23,7 +23,7 @@ compileJava.options.encoding = 'UTF-8'
mainClassName = 'fr.slixe.mining.Main'

group 'fr.slixe'
version '1.0.0'
version '1.0.1'

sourceCompatibility = 1.8
targetCompatibility = 1.8
@@ -50,7 +50,7 @@ dependencies {
'org.apache.logging.log4j:log4j-core:2.10.0',
)

implementation('fr.litarvan.paladin:paladin-framework:1.2.0') {
implementation('fr.litarvan.paladin:paladin-framework:1.2.1') {
exclude group: 'org.apache.httpcomponents', module: 'httpcore-nio'
exclude group: 'org.apache.logging.log4j', module: 'log4j-core'
}


+ 2
- 2
dero-stats/public/index.html View File

@@ -6,11 +6,11 @@
<meta name="viewport" content="width=device-width,initial-scale=1.0">
<link rel="icon" href="<%= BASE_URL %>logo.png">
<link href='https://fonts.googleapis.com/css?family=Roboto:300,400,500,700%7CMaterial+Icons' rel="stylesheet">
<title>DERO Stats</title>
<title>DERO Mining Stats</title>
</head>
<body>
<noscript>
<strong>We're sorry but DERO Stats doesn't work properly without JavaScript enabled. Please enable it to continue.</strong>
<strong>We're sorry but DERO Mining Stats doesn't work properly without JavaScript enabled. Please enable it to continue.</strong>
</noscript>
<div id="app"></div>
<!-- built files will be auto injected -->


+ 4
- 4
dero-stats/src/main.js View File

@@ -21,14 +21,14 @@ new Vue({
},
themes: {
dark: {
primary: '#383B3E',
secondary: '#2A2D2F',
anchor: '#303030',
primary: '#2A2D2F',
secondary: '#383B3E',
anchor: '#45484B',
},
light: {
primary: '#DCDCDC',
secondary: '#DCDCDC',
anchor: '#B0C4DE',
anchor: '#BDBDBD',
}
},
dark: true


Loading…
Cancel
Save