diff --git a/src/Bundle/ChillMainBundle/Resources/public/chill/chillmain.scss b/src/Bundle/ChillMainBundle/Resources/public/chill/chillmain.scss index 5c302bf83..7cd3f5479 100644 --- a/src/Bundle/ChillMainBundle/Resources/public/chill/chillmain.scss +++ b/src/Bundle/ChillMainBundle/Resources/public/chill/chillmain.scss @@ -518,8 +518,14 @@ div.v-toast { z-index: 10000!important; } -div.grouped { - padding: 1em; - border: 1px solid black; - margin-bottom: 2em; +// export index page +div.exports-list { + div.flex-bloc .item-bloc { + flex-basis: 33%; + @include media-breakpoint-down(lg) { flex-basis: 50%; } + @include media-breakpoint-down(sm) { flex-basis: 100%; } + p:last-child { + margin-top: auto; + } + } } \ No newline at end of file diff --git a/src/Bundle/ChillMainBundle/Resources/views/Export/layout.html.twig b/src/Bundle/ChillMainBundle/Resources/views/Export/layout.html.twig index 5ce433535..b86f617b4 100644 --- a/src/Bundle/ChillMainBundle/Resources/views/Export/layout.html.twig +++ b/src/Bundle/ChillMainBundle/Resources/views/Export/layout.html.twig @@ -25,25 +25,23 @@ {{ include('@ChillMain/Export/_navbar.html.twig', {'current' : 'common'}) }} -
+
{% for group, exports in grouped_exports %}{% if group != '_' %}

{{ group|trans }}

-
+
{% for export_alias, export in exports %} -
-
-
-

{{ export.title|trans }}

-

{{ export.description|trans }}

-

- - {{ 'Create an export'|trans }} - -

-
+
+
+

{{ export.title|trans }}

+

{{ export.description|trans }}

+

+ + {{ 'Create an export'|trans }} + +

{% endfor %}