Skip to content

Commit

Permalink
fix homepage CSS
Browse files Browse the repository at this point in the history
  • Loading branch information
ArnaudLigny committed Feb 1, 2024
1 parent f6626cb commit ee1d086
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 7 deletions.
4 changes: 4 additions & 0 deletions assets/styles.css
Original file line number Diff line number Diff line change
Expand Up @@ -1273,6 +1273,10 @@ video {
max-width: none;
}

.max-w-screen-xl {
max-width: 1280px;
}

.grow {
flex-grow: 1;
}
Expand Down
12 changes: 6 additions & 6 deletions composer.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 4 additions & 0 deletions themes/docs/assets/styles.css
Original file line number Diff line number Diff line change
Expand Up @@ -1273,6 +1273,10 @@ video {
max-width: none;
}

.max-w-screen-xl {
max-width: 1280px;
}

.grow {
flex-grow: 1;
}
Expand Down
2 changes: 1 addition & 1 deletion themes/docs/layouts/_default/home.html.twig
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{% extends '_default/page.html.twig' %}

{%- block content ~%}
<div class="px-6 md:px-8 lg:px-14 mx-auto pt-14 md:pt-20 lg:pt-36 flex-col space-y-12">
<div class="max-w-screen-xl px-6 md:px-8 lg:px-14 mx-auto pt-14 md:pt-20 lg:pt-36 flex-col space-y-12">
{#- blocks ~#}
{%- for block in page.blocks|default ~%}
{{- include('blocks/' ~ block.name ~ '.html.twig', ignore_missing = true) ~}}
Expand Down

0 comments on commit ee1d086

Please sign in to comment.