- small changes on base.html.twig
- added images to gitignore
This commit is contained in:
Jérémy Guillot
2024-06-20 00:11:52 +02:00
parent c1ba9820b6
commit 8ad03f2657
4 changed files with 32 additions and 14 deletions

View File

@@ -12,7 +12,7 @@
{{ encore_entry_script_tags('app') }}
{% endblock %}
</head>
<body class="bg-gray-50">
<body class="bg-gray-50 h-screen overflow-hidden">
<div data-controller="mercure"
data-mercure-topic="notification">
</div>
@@ -51,21 +51,21 @@
<twig:Search/>
</div>
</div>
<div class="pt-16 flex bg-white">
{# <div class="pt-16 flex bg-white"> #}
<div class="fixed left-0 h-full mt-16">
{% include 'menu/menu.html.twig' %}
<div class="w-full flex flex-col ml-60 overscroll-contain">
<div class="sticky top-16 z-20">
{% block toolbar %}
{% endblock %}
</div>
<div class="z-10 bg-gray-50">
{% block body %}
{% endblock %}
</div>
</div>
<div class="flex flex-col ml-60 overflow-y-auto h-full">
<div class="fixed w-full overflow-hidden top-16 z-20">
{% block toolbar %}
{% endblock %}
</div>
<div class="z-10 bg-gray-50 mt-36">
{% block body %}
{% endblock %}
</div>
</div>
{# </div> #}
</div>
{#<script src="https://kit.fontawesome.com/42e345444d.js" crossorigin="anonymous"></script>#}
</body>
</html>