Add custom Protocoin symbol

master
Tanner Collin 2 years ago
parent 495a6855a1
commit 51f31fc4df
  1. 2
      apiserver/apiserver/settings.py
  2. 1
      webclient/public/index.html
  3. 60
      webclient/public/protofont-embedded.css
  4. 2
      webclient/src/App.js
  5. 1
      webclient/src/light.css

@ -294,7 +294,7 @@ DEFAULT_FROM_EMAIL = 'Protospace Portal <portal@mg.protospace.ca>'
if DEBUG: logger.info('Debug mode ON')
logger.info('Test logging for each thread')
APP_VERSION = 3 # TODO: automate this
APP_VERSION = 4 # TODO: automate this
SHELL_PLUS = 'ipython'

@ -9,6 +9,7 @@
<link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png">
<link rel="manifest" href="/site.webmanifest">
<link rel="mask-icon" href="/safari-pinned-tab.svg" color="#5bbad5">
<link rel="stylesheet" href="protofont-embedded.css">
<meta name="theme-color" content="#ffffff">
<meta

File diff suppressed because one or more lines are too long

@ -31,7 +31,7 @@ import { Garden } from './Garden.js';
import { Footer } from './Footer.js';
import { LCARS1Display } from './Display.js';
const APP_VERSION = 3; // TODO: automate this
const APP_VERSION = 4; // TODO: automate this
function App() {
const [token, setToken] = useState(localStorage.getItem('token', ''));

@ -8,6 +8,7 @@ body {
body {
background: black;
overflow-y: scroll;
font-family: 'protofont',Lato,'Helvetica Neue',Arial,Helvetica,sans-serif !important;
}
#root {

Loading…
Cancel
Save