Update font size in ClientsSection component
Adjusted the font size in the ClientsSection component for better visual appearance and readability. The adjustment caters to several devices' sizes, ensuring a consistent look and feel across various platforms. As part of improving aesthetics, the 'text-2xl' and 'sm:text-3xl' classes were added to enhance the title's font size.
This commit is contained in:
parent
e7b0e8ae74
commit
696915035d
1 changed files with 1 additions and 1 deletions
|
@ -11,7 +11,7 @@ const subTitle: string =
|
||||||
<!-- Title and description -->
|
<!-- Title and description -->
|
||||||
<div class="mx-auto mb-6 w-full space-y-1 text-center sm:w-1/2 lg:w-1/3">
|
<div class="mx-auto mb-6 w-full space-y-1 text-center sm:w-1/2 lg:w-1/3">
|
||||||
<h2
|
<h2
|
||||||
class="text-balance text-xl font-bold leading-tight text-neutral-800 dark:text-neutral-200 md:text-2xl"
|
class="text-balance text-2xl font-bold leading-tight text-neutral-800 dark:text-neutral-200 sm:text-3xl"
|
||||||
>
|
>
|
||||||
{title}
|
{title}
|
||||||
</h2>
|
</h2>
|
||||||
|
|
Loading…
Add table
Reference in a new issue