Skip to content

Commit

Permalink
updating build:css-app and build:css-editor to run with new tailwind …
Browse files Browse the repository at this point in the history
…version
  • Loading branch information
Psiale committed Jan 27, 2025
1 parent b035f8a commit a3c1265
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
"wpackagist-plugin/wordpress-seo": "dev-trunk",
"wpackagist-plugin/redirection": "dev-trunk",
"wpackagist-plugin/acf-extended": "dev-trunk",
"wpengine/advanced-custom-fields-pro": "^6.0",
"wpengine/advanced-custom-fields-pro": "^6.0"
},
"require-dev": {
"automattic/vipwpcs": "^2.3",
Expand Down
2 changes: 1 addition & 1 deletion src/css/custom.css
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

article > *:not(.entry-content),
.entry-content > * {
@apply mx-auto max-w-content;
@apply mx-auto max-w-max;
}

.entry-content > .alignfull {
Expand Down
10 changes: 5 additions & 5 deletions wp-content/themes/ft-base-theme/index.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,17 +2,17 @@

<div class="container mx-auto my-8">
<?php if (is_archive()): ?>
<h1 class="entry-title text-2xl lg:text-5xl font-extrabold leading-tight mb-8 max-w-content"><?= wp_kses_post(get_the_archive_title()); ?></h1>
<h1 class="entry-title text-2xl lg:text-5xl font-extrabold leading-tight mb-8 max-w-max"><?= wp_kses_post(get_the_archive_title()); ?></h1>
<?php endif; ?>
<?php if ( have_posts() ) : ?>
<?php if (have_posts()) : ?>
<?php
while ( have_posts() ) :
while (have_posts()) :
the_post();
?>
?>

<?php get_template_part('template-parts/content', get_post_format()); ?>

<?php endwhile; ?>
<?php endwhile; ?>

<?php endif; ?>

Expand Down

0 comments on commit a3c1265

Please sign in to comment.