Better fonts! (#12)
This commit is contained in:
parent
3e9a0a03f8
commit
6297f9d0f0
@ -42,6 +42,9 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"input": "src/global.scss"
|
"input": "src/global.scss"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"input": "src/assets/font/fonts.css"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"scripts": []
|
"scripts": []
|
||||||
|
@ -3,7 +3,7 @@
|
|||||||
<ion-menu class="sidebar" contentId="main-content" content="content" type="push" side="start">
|
<ion-menu class="sidebar" contentId="main-content" content="content" type="push" side="start">
|
||||||
<ion-header>
|
<ion-header>
|
||||||
<ion-toolbar color="primary">
|
<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-menu-toggle menu="first" autoHide="false"></ion-menu-toggle>
|
||||||
</ion-title>
|
</ion-title>
|
||||||
</ion-toolbar>
|
</ion-toolbar>
|
||||||
|
BIN
src/assets/font/Raleway-Bold.ttf
Normal file
BIN
src/assets/font/Raleway-Bold.ttf
Normal file
Binary file not shown.
BIN
src/assets/font/Raleway-Light.ttf
Normal file
BIN
src/assets/font/Raleway-Light.ttf
Normal file
Binary file not shown.
BIN
src/assets/font/Raleway-Regular.ttf
Normal file
BIN
src/assets/font/Raleway-Regular.ttf
Normal file
Binary file not shown.
17
src/assets/font/fonts.css
Normal file
17
src/assets/font/fonts.css
Normal file
@ -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 **/
|
/** Ionic CSS Variables **/
|
||||||
:root {
|
:root {
|
||||||
|
--ion-font-family: 'Raleway';
|
||||||
|
|
||||||
/** primary **/
|
/** primary **/
|
||||||
--ion-color-primary: #3880ff;
|
--ion-color-primary: #3880ff;
|
||||||
--ion-color-primary-rgb: 56, 128, 255;
|
--ion-color-primary-rgb: 56, 128, 255;
|
||||||
|
Loading…
Reference in New Issue
Block a user