diff --git a/src/objects/page/page.scss b/src/objects/page/page.scss index b7ffed900..c8b3949f3 100644 --- a/src/objects/page/page.scss +++ b/src/objects/page/page.scss @@ -1,16 +1,17 @@ /** * Page container * - * Attempts to fill the available area (assuming `height: 100%` is correctly - * applied to all parent elements) and keeps the footer at the bottom of that - * area. - * - * @see https://css-tricks.com/couple-takes-sticky-footer/#there-is-grid + * 1. Avoid grid blowouts by specifying the `min-width` of the column. + * @see https://css-tricks.com/you-want-minmax10px-1fr-not-1fr/ + * 2. Attempts to fill the available area (assuming `height: 100%` is applied + * to all parent elements) & keep the footer at the bottom of that area. + * @see https://css-tricks.com/couple-takes-sticky-footer/#there-is-grid */ .o-page { display: grid; - grid-template-rows: 1fr auto; + grid-template-columns: minmax(0, 1fr); // 1 + grid-template-rows: 1fr auto; // 2 min-height: 100%; } diff --git a/src/prototypes/single-article/example/example.twig b/src/prototypes/single-article/example/example.twig index e53edf8d9..f8e732b10 100644 --- a/src/prototypes/single-article/example/example.twig +++ b/src/prototypes/single-article/example/example.twig @@ -1,3 +1,6 @@ +
There are some places where Slowpoke is worshiped because of a long-standing belief that whenever Slowpoke yawns, it rains. Carrying food through Fearow’s territory is dangerous. It will snatch the food away from you in a flash! Oddish searches for fertile, nutrient-rich soil, then plants itself. During the daytime, while it is planted, this Pokémon’s feet are thought to change shape and become similar to the roots of trees.
{{content|trim|escape}}
+ {{content|trim|escape}}
In the distant past, they were fairly strong, but they have become gradually weaker over time. Although known for their splendid tail fins, Goldeen apparently compete among themselves to see whose horn is thickest and sharpest. Beautifly has a long mouth like a coiled needle, which is very convenient for collecting pollen from flowers. This Pokémon rides the spring winds as it flits around gathering pollen.
@@ -298,6 +306,10 @@ {% endembed %} {% endblock %} {% endembed %} + +