fixes
All checks were successful
deploy to production / deploy (push) Successful in 35s

This commit is contained in:
Robin Grenzdörfer 2023-09-01 14:50:43 +00:00
parent 8b955bdae6
commit 9a4270e4dd
4 changed files with 24 additions and 8 deletions

View File

@ -68,7 +68,7 @@
top: 110vh; top: 110vh;
left: 0px; left: 0px;
right: 0px; right: 0px;
height: 100vh; height: 100%;
&.active { &.active {
top: 0px; top: 0px;
} }

View File

@ -112,8 +112,10 @@
flex-direction: column; flex-direction: column;
justify-content: center; justify-content: center;
align-items: flex-start; align-items: flex-start;
gap: 20px;
@media @tablet { @media @tablet {
align-items: center; align-items: center;
gap: initial;
} }
width: 100%; width: 100%;
height: fit-content; height: fit-content;
@ -123,7 +125,10 @@
font-weight: 500; font-weight: 500;
h1 { h1 {
font-size: 2rem; font-size: 2rem;
padding: 20px 0px; padding: 10px 0px 0px 0px;
@media @tablet {
padding: 20px 0px;
}
margin: 10px 0px 20px 0px; margin: 10px 0px 20px 0px;
line-height: 1; line-height: 1;
font-weight: 500; font-weight: 500;
@ -131,7 +136,10 @@
} }
h2 { h2 {
font-size: 1.6rem !important; font-size: 1rem !important;
@media @tablet {
font-size: 1.6rem !important;
}
line-height: 1; line-height: 1;
font-family: "Libre Franklin", sans-serif; font-family: "Libre Franklin", sans-serif;
font-weight: 500; font-weight: 500;

View File

@ -39,10 +39,7 @@
{#if Object.keys(row).length} {#if Object.keys(row).length}
{#if row.topTitle} {#if row.topTitle}
<h3 <h3 class="{row.topTitleUpperCase ? 'hph3' : 'nmh3'}" class:red="{row.topTitleRed}">
style="{row.topTitleUpperCase ? 'text-transform: uppercase; font-size: 0.7rem;' : 'font-size: 1.6rem'}"
class:red="{row.topTitleRed}"
>
{row.topTitle} {row.topTitle}
</h3> </h3>
{/if} {/if}
@ -183,4 +180,15 @@
min-width: 0; min-width: 0;
} }
} }
.hph3 {
text-transform: uppercase;
font-size: 0.7rem;
}
.nmh3 {
font-size: 1rem;
@media @tablet {
font-size: 1.6rem;
}
}
</style> </style>

View File

@ -94,7 +94,7 @@
gap: 20px; gap: 20px;
align-items: center; align-items: center;
.title { .title {
font-size: min(0.9vw, 14px); font-size: min(1.6vw, 14px);
padding: 2px 5px; padding: 2px 5px;
text-transform: uppercase; text-transform: uppercase;
@media @tablet { @media @tablet {