web/quotes: increase root font size

This commit is contained in:
Luke Granger-Brown 2021-01-22 23:59:19 +00:00
parent e266f5bb2f
commit a3fdfcec40
2 changed files with 5 additions and 1 deletions

View file

@ -11,7 +11,7 @@
<link rel="stylesheet" href="{% static 'css/styles.css' %}">
</head>
<body class="bg-bfobGray-dark text-bfobGray font-sans leading-normal tracking-normal text-lg">
<body class="bg-bfobGray-dark text-bfobGray font-sans leading-normal tracking-normal">
<div class="container mx-auto max-w-screen-md">
<section class="flex justify-between items-center">

View file

@ -1,3 +1,7 @@
@tailwind base;
@tailwind components;
@tailwind utilities;
html {
font-size: 13pt;
}