How the app is updated?
November 2, 2016
Custom Profile Module
January 18, 2017
Show all

In this article, we are going to see how to use specific fonts in your app by using the SCSS/CSS section in Colors.

How to add a new font to an app?

Firstly, go in the Colors menu in the AppQuick editor:

Then, scroll down in the page and enable the Advanced customization section:

In this section you can now add a new font by using the method @import, like this:

@import 'https://fonts.googleapis.odeom/css?family=Ewert';

In this example we have imported the font “Ewert”. We can now use this font in our app.

How to use the new font(s) in our app?

Still in this advanced section, following our font import, we are going to call the font in our CSS:

.layout {
*{
font-family: 'Ewert' !important;
font-size: 30px !important;
}
}

Click on “save”.

In this SCSS example we can see we are using the font “Ewert” in all our layout.

Comments are closed.

Discover more from AppQuick

Subscribe now to keep reading and get access to the full archive.

Continue reading