Use DIN OT in wallet view

feature/default_network_editable
sdtsui 7 years ago
parent fce6041dbe
commit 2d5c3394f4
  1. 16
      ui/app/css/fonts.css
  2. 3
      ui/app/main-container.js

@ -8,7 +8,6 @@
font-weight: normal;
font-style: normal;
font-size: 'small';
}
@font-face {
@ -23,14 +22,21 @@
font-family: 'Montserrat Light';
src: url('/fonts/Montserrat/Montserrat-Light.woff') format('woff');
src: url('/fonts/Montserrat/Montserrat-Light.ttf') format('truetype');
font-weight: normal;
font-style: normal;
font-weight: normal;
font-style: normal;
}
@font-face {
font-family: 'Montserrat UltraLight';
src: url('/fonts/Montserrat/Montserrat-UltraLight.woff') format('woff');
src: url('/fonts/Montserrat/Montserrat-UltraLight.ttf') format('truetype');
font-weight: normal;
font-style: normal;
font-weight: normal;
font-style: normal;
}
@font-face {
font-family: 'DIN OT';
src: url('/fonts/DIN_OT/DINOT-2.otf') format('opentype');
font-weight: normal;
font-style: normal;
}

@ -11,7 +11,7 @@ function MainContainer () {
}
MainContainer.prototype.render = function () {
console.log("rendering MainContainer...");
return h('div.flex-row', {
style: {
position: 'absolute',
@ -19,6 +19,7 @@ MainContainer.prototype.render = function () {
width: '98%',
zIndex: 20,
boxShadow: '0 0 7px 0 rgba(0,0,0,0.08)',
fontFamily: 'DIN OT',
}
}, [
h(WalletView, {

Loading…
Cancel
Save