18 lines
427 B
Twig
18 lines
427 B
Twig
|
{% extends "base.html.twig" %}
|
||
|
|
||
|
{% block localstyle %}
|
||
|
<style>
|
||
|
body{margin:0px !important;}
|
||
|
.title{
|
||
|
font-family: var(--fonttitle) !important;
|
||
|
}
|
||
|
.swagger-ui .info hgroup.main {margin:0px !important;}
|
||
|
#swagger-ui.api-platform .info {
|
||
|
max-width:100% !important;
|
||
|
padding: 10px !important;
|
||
|
}
|
||
|
</style>
|
||
|
{% endblock %}
|
||
|
{% block body %}
|
||
|
{{ render(path("app_swagger_ui")) }}
|
||
|
{% endblock %}
|