Compare commits
No commits in common. "255717ff4bbefc41128c3333ef117ed4182c76e6" and "b60292bb2056941ee94f1e934e1215406615af10" have entirely different histories.
255717ff4b
...
b60292bb20
|
|
@ -19,7 +19,6 @@ body.front-end {
|
|||
|
||||
h2 {
|
||||
@apply text-4xl;
|
||||
line-height: 1.2;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
@ -75,11 +74,8 @@ h2.chapter-section__title {
|
|||
font-family: 'Nunito Sans', sans-serif !important;
|
||||
}
|
||||
.subtitle-big {
|
||||
@apply text-4xl md:text-5xl font-normal uppercase fjalla pb-6;
|
||||
line-height: 1.2;
|
||||
@screen lg {
|
||||
line-height: 1.3;
|
||||
}
|
||||
/* text-rendering: geometricPrecision; */
|
||||
font-weight: 400 !important;
|
||||
@apply text-5xl font-normal uppercase fjalla pb-6;
|
||||
line-height: 1.3;
|
||||
text-rendering: geometricPrecision;
|
||||
font-weight: 100 !important;
|
||||
}
|
||||
|
|
|
|||
|
|
@ -59,7 +59,7 @@
|
|||
}
|
||||
|
||||
&__issue-title {
|
||||
@apply text-3xl lg:text-5xl uppercase pb-6 md:pb-12;
|
||||
@apply lg:text-5xl text-4xl uppercase pb-6 md:pb-12;
|
||||
line-height: 1.2;
|
||||
font-weight: 100 !important;
|
||||
}
|
||||
|
|
|
|||
|
|
@ -2,9 +2,6 @@
|
|||
@apply w-fit bg-transparent px-3 py-2 relative text-primary border border-primary;
|
||||
|
||||
&:hover {
|
||||
a {
|
||||
@apply text-white;
|
||||
}
|
||||
@apply bg-primary text-white;
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
footer {
|
||||
@apply w-full mx-auto px-4 md:px-12 pb-6 md:pb-32;
|
||||
@apply w-full mx-auto px-4 md:px-12 pb-32;
|
||||
|
||||
.section-title {
|
||||
@apply text-lg nunito uppercase font-bold tracking-widest mb-6;
|
||||
|
|
|
|||
|
|
@ -36,12 +36,12 @@
|
|||
@apply flex
|
||||
flex-col
|
||||
lg:flex-row
|
||||
lg:items-center
|
||||
items-center
|
||||
justify-around
|
||||
lg:justify-between;
|
||||
|
||||
ul {
|
||||
@apply flex flex-col lg:flex-row
|
||||
@apply lg:flex
|
||||
gap-x-2
|
||||
lg:gap-x-4
|
||||
xl:gap-x-8
|
||||
|
|
@ -192,8 +192,8 @@
|
|||
font-medium
|
||||
py-8
|
||||
text-lg
|
||||
pb-2
|
||||
lg:pb-0;
|
||||
|
||||
pb-0;
|
||||
|
||||
.sub-menu li {
|
||||
@apply text-sm;
|
||||
|
|
@ -226,8 +226,8 @@
|
|||
} */
|
||||
.primary-menu-container {
|
||||
li.menu-item {
|
||||
/* @apply mx-auto */
|
||||
/* !text-left */
|
||||
@apply mx-auto
|
||||
/* !text-left */;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -10,7 +10,7 @@
|
|||
@apply max-w-screen-2xl w-full mx-auto flex justify-between items-center;
|
||||
|
||||
ul {
|
||||
@apply flex flex-col lg:flex-row justify-between gap-4;
|
||||
@apply block lg:flex justify-between gap-4;
|
||||
}
|
||||
a {
|
||||
@apply font-normal text-lg;
|
||||
|
|
@ -44,6 +44,12 @@
|
|||
@apply hidden lg:block;
|
||||
}
|
||||
|
||||
/* @media (max-width: 1024px) {
|
||||
header[nav-open='true'] .secondary-menu-container {
|
||||
@apply block;
|
||||
}
|
||||
} */
|
||||
|
||||
@media (max-width: 960px) {
|
||||
.secondary-menu-container {
|
||||
@apply w-fit mx-0;
|
||||
|
|
|
|||
|
|
@ -20,12 +20,7 @@ $cover = get_the_post_thumbnail_url($articleID);
|
|||
$terms = get_the_terms($articleID, 'etiquettes');
|
||||
if ($terms): ?>
|
||||
<?php foreach ($terms as $term): ?>
|
||||
|
||||
<li class="article-card__tag article-tag">
|
||||
<a href="<?php echo add_query_arg('etiquette', $tag->slug, get_post_type_archive_link('articles')); ?>">
|
||||
<?php echo esc_html($term->name); ?>
|
||||
</a>
|
||||
</li>
|
||||
<li class="article-card__tag article-tag"><?php echo esc_html($term->name); ?></li>
|
||||
<?php endforeach; ?>
|
||||
<?php endif; ?>
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user