Better fonts! (#12)
continuous-integration/drone/push Build is passing Details
continuous-integration/drone Build is passing Details

pull/18/head
Garrett Mills 4 years ago
parent 3e9a0a03f8
commit 6297f9d0f0
Signed by: garrettmills
GPG Key ID: D2BF5FBA8298F246

@ -42,6 +42,9 @@
},
{
"input": "src/global.scss"
},
{
"input": "src/assets/font/fonts.css"
}
],
"scripts": []

@ -3,7 +3,7 @@
<ion-menu class="sidebar" contentId="main-content" content="content" type="push" side="start">
<ion-header>
<ion-toolbar color="primary">
<ion-title>{{ appName }}
<ion-title style="font-weight: bold; color: white;">{{ appName }}
<ion-menu-toggle menu="first" autoHide="false"></ion-menu-toggle>
</ion-title>
</ion-toolbar>

Binary file not shown.

Binary file not shown.

@ -0,0 +1,17 @@
@font-face {
font-family: 'Raleway';
src: url('./Raleway-Regular.ttf');
font-weight: normal;
}
@font-face {
font-family: 'Raleway';
src: url('./Raleway-Light.ttf');
font-weight: 100;
}
@font-face {
font-family: 'Raleway';
src: url('./Raleway-Bold.ttf');
font-weight: bold;
}

@ -3,6 +3,8 @@
/** Ionic CSS Variables **/
:root {
--ion-font-family: 'Raleway';
/** primary **/
--ion-color-primary: #3880ff;
--ion-color-primary-rgb: 56, 128, 255;

Loading…
Cancel
Save