lol hide instagram between lg-xl
Some checks failed
test / cargo test (push) Failing after 1m12s

This commit is contained in:
Michal Vanko 2024-09-25 16:21:35 +02:00
parent 1eb0f55264
commit 20d1314925
3 changed files with 38 additions and 3 deletions

View File

@ -722,6 +722,11 @@ video {
margin-bottom: 1.25rem; margin-bottom: 1.25rem;
} }
.my-auto {
margin-top: auto;
margin-bottom: auto;
}
.mb-1 { .mb-1 {
margin-bottom: 0.25rem; margin-bottom: 0.25rem;
} }
@ -871,6 +876,14 @@ video {
max-width: 36rem; max-width: 36rem;
} }
.max-w-\[440px\] {
max-width: 440px;
}
.flex-1 {
flex: 1 1 0%;
}
.flex-grow { .flex-grow {
flex-grow: 1; flex-grow: 1;
} }
@ -885,6 +898,10 @@ video {
break-inside: avoid; break-inside: avoid;
} }
.grid-flow-row {
grid-auto-flow: row;
}
.grid-flow-col { .grid-flow-col {
grid-auto-flow: column; grid-auto-flow: column;
} }
@ -909,6 +926,10 @@ video {
place-content: center; place-content: center;
} }
.content-center {
align-content: center;
}
.content-end { .content-end {
align-content: flex-end; align-content: flex-end;
} }
@ -917,6 +938,10 @@ video {
align-items: center; align-items: center;
} }
.items-stretch {
align-items: stretch;
}
.justify-end { .justify-end {
justify-content: flex-end; justify-content: flex-end;
} }
@ -1897,6 +1922,10 @@ article a:visited {
display: grid; display: grid;
} }
.md\:hidden {
display: none;
}
.md\:h-16 { .md\:h-16 {
height: 4rem; height: 4rem;
} }
@ -2046,6 +2075,10 @@ article a:visited {
grid-row-start: auto; grid-row-start: auto;
} }
.xl\:block {
display: block;
}
.xl\:grid-cols-3 { .xl\:grid-cols-3 {
grid-template-columns: repeat(3, minmax(0, 1fr)); grid-template-columns: repeat(3, minmax(0, 1fr));
} }

View File

@ -1,6 +1,6 @@
{% macro social_card_start(svg, heading, img) %} {% macro social_card_start(svg, heading, img) %}
<section class="border rounded-md bg-pink-200 m-4 p-4 w-fit"> <section class="border rounded-md bg-pink-200 m-4 p-4 max-w-[440px]">
<header class="flex text-center justify-center items-center gap-2 mb-2"> <header class="flex text-center justify-center items-center gap-2 mb-2">
<svg aria-hidden="true" class="h-7 w-7 fill-blue-950"> <svg aria-hidden="true" class="h-7 w-7 fill-blue-950">
<use xlink:href="/svg/icons-sprite.svg#{{svg}}" /> <use xlink:href="/svg/icons-sprite.svg#{{svg}}" />
@ -9,7 +9,7 @@
</header> </header>
{% let alt_text = format!("{svg} thumbnail") %} {% let alt_text = format!("{svg} thumbnail") %}
{{ crate::picture_generator::picture_markup_generator::generate_picture_markup(img, 420, 200, alt_text, Some("h-auto"), true).unwrap_or("thumbnail not found".to_string())|safe }} {{ crate::picture_generator::picture_markup_generator::generate_picture_markup(img, 394, 160, alt_text, Some("h-auto mx-auto"), true).unwrap_or("thumbnail not found".to_string())|safe }}
</section> </section>
{% endmacro %} {% endmacro %}

View File

@ -1,12 +1,14 @@
<h2 class="text-blue-950 font-bold text-2xl m-5 md:text-4xl">Socials</h2> <h2 class="text-blue-950 font-bold text-2xl m-5 md:text-4xl">Socials</h2>
<section class="flex flex-col items-center"> <section class="grid grid-flow-row justify-center">
{% call sc::social_card_start("twitch", "I stream (almost) regularly on <em>twitch.tv</em>", "images/social/instagram_plain.png") %} {% call sc::social_card_start("twitch", "I stream (almost) regularly on <em>twitch.tv</em>", "images/social/instagram_plain.png") %}
{% call sc::social_card_start("tiktok", "Highlights can be found on <em>TikTok</em>", "images/social/instagram_plain.png") %} {% call sc::social_card_start("tiktok", "Highlights can be found on <em>TikTok</em>", "images/social/instagram_plain.png") %}
{% call sc::social_card_start("youtube", "Vlogs and highlights can be found on <em>YouTube</em>", "images/social/instagram_plain.png") %} {% call sc::social_card_start("youtube", "Vlogs and highlights can be found on <em>YouTube</em>", "images/social/instagram_plain.png") %}
<div class="lg:hidden xl:block">
{% call sc::social_card_start("instagram", "Photos and stories shared on <em>Instagram</em>", "images/social/instagram_plain.png") %} {% call sc::social_card_start("instagram", "Photos and stories shared on <em>Instagram</em>", "images/social/instagram_plain.png") %}
</div>
</section> </section>