style(layout): widen content columns in article and letter pages

Increased the column width from col-lg-8 to col-lg-10 in both article and letter templates to improve readability and make better use of screen real estate on larger devices. This change enhances the visual presentation of content without compromising layout integrity.
This commit is contained in:
Kumi 2024-08-02 23:13:53 +02:00
parent 5201a8a7d6
commit f2a32cf134
Signed by: kumi
GPG key ID: ECBCC9082395383F
2 changed files with 2 additions and 2 deletions

View file

@ -3,7 +3,7 @@
<!-- Article Content -->
<section class="container my-5">
<div class="row">
<div class="col-lg-8 mx-auto">
<div class="col-lg-10 mx-auto">
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
<h1 class="display-4"><?php the_title(); ?></h1>
<p class="text-muted">

View file

@ -3,7 +3,7 @@
<!-- Letter Content -->
<section class="container my-5">
<div class="row">
<div class="col-lg-8 mx-auto">
<div class="col-lg-10 mx-auto">
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
<h1 class="display-4"><?php the_title(); ?></h1>
<p class="text-muted">