Add styling

This commit is contained in:
Oliver Davies 2019-11-05 00:27:04 +00:00
parent 1df3a68843
commit 6b80c6e908
16 changed files with 6583 additions and 5 deletions

View file

@ -1,12 +1,16 @@
<!DOCTYPE html>
<html>
<html class="text-lg lg:text-4xl">
<head>
<meta charset="UTF-8">
<title>{% block title %}Welcome!{% endblock %}</title>
{% block stylesheets %}{% endblock %}
{% block stylesheets %}
{{ encore_entry_link_tags('app') }}
{% endblock %}
</head>
<body>
{% block body %}{% endblock %}
{% block javascripts %}{% endblock %}
{% block javascripts %}
{{ encore_entry_script_tags('app') }}
{% endblock %}
</body>
</html>

View file

@ -3,5 +3,9 @@
{% block title %}Hi {{ eventName }}!{% endblock %}
{% block body %}
<h1>Hi {{ eventName }}!</h1>
<div class="min-h-screen flex items-center justify-center font-sans bg-gray-100 antialiased">
<div class="p-4">
<h1 class="text-4xl font-semibold text-center text-gray-800">Hi {{ eventName }}!</h1>
</div>
</div>
{% endblock %}