mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-12-23 09:52:26 +01:00
Use DIN OT in wallet view
This commit is contained in:
parent
fce6041dbe
commit
2d5c3394f4
@ -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…
Reference in New Issue
Block a user