diff --git a/pug/page-contents/typography_content.html b/pug/page-contents/typography_content.html index f57f813049..4f5155cbb4 100644 --- a/pug/page-contents/typography_content.html +++ b/pug/page-contents/typography_content.html @@ -4,7 +4,6 @@
-

Headers

We provide some basic styling on header tags. In the example, you can see the the 6 header tags' different sizes.

@@ -50,7 +49,20 @@

Flow Text

<p class="flow-text">I am Flow Text</p>
- +
+

Changing the font stack

+

+ The Material Design standard uses Roboto font. We have included the font in our framework. +
In case you don't want to use Roboto on your webpage, fear not. You can change the font stack by modifying the + code below to your liking and add it to your custom CSS. +

+

+  html,
+  button, input, optgroup, select, textarea {
+    font-family: GillSans, Calibri, Trebuchet, sans-serif;
+  }
+          
+
@@ -62,6 +74,7 @@

Flow Text

  • Headers
  • Blockquotes
  • Flow Text
  • +
  • Changing the font stack
  • diff --git a/sass/components/_global.scss b/sass/components/_global.scss index 79b35c3eea..8207aec895 100644 --- a/sass/components/_global.scss +++ b/sass/components/_global.scss @@ -7,16 +7,6 @@ html { box-sizing: inherit; } -body { - // display: flex; - // min-height: 100vh; - // flex-direction: column; -} - -main { - // flex: 1 0 auto; -} - button, input, optgroup,