diff options
| -rw-r--r-- | resources/pug/include/layout.pug | 2 | ||||
| -rw-r--r-- | resources/sass/style.scss | 4 |
2 files changed, 5 insertions, 1 deletions
diff --git a/resources/pug/include/layout.pug b/resources/pug/include/layout.pug index 1cbf0f4..2f362a0 100644 --- a/resources/pug/include/layout.pug +++ b/resources/pug/include/layout.pug @@ -18,7 +18,7 @@ html(lang="en") - var date = new Date() hr - footer.footer + footer.footer.smaller p.text-center | Copyright © Camil Staps 2015–#{date.getFullYear()} • = "Last updated " + date.toDateString() diff --git a/resources/sass/style.scss b/resources/sass/style.scss index 13242db..00447e6 100644 --- a/resources/sass/style.scss +++ b/resources/sass/style.scss @@ -99,6 +99,10 @@ body { font-size: larger; } +.smaller { + font-size: smaller; +} + .wrap-anywhere { word-wrap: anywhere; /* utlity to prevent horizontal scrolling on small screens */ } |
