Fix some typos in html_cva docs

This commit is contained in:
Jacob Dreesen
2024-11-08 19:22:16 +01:00
committed by GitHub
parent 5b380e5b3b
commit 151b05b2bb
+6 -6
View File
@@ -20,7 +20,7 @@ function where you define ``base`` classes that should always be present and the
{# templates/alert.html.twig #}
{% set alert = html_cva(
base='alert ',
base='alert',
variants={
color: {
blue: 'bg-blue',
@@ -45,13 +45,13 @@ Then use the ``color`` and ``size`` variants to select the needed classes:
{# index.html.twig #}
{{ include('alert.html.twig', {'color': 'blue', 'size': 'md'}) }}
// class="alert bg-red text-lg"
// class="alert bg-red text-md"
{{ include('alert.html.twig', {'color': 'green', 'size': 'sm'}) }}
// class="alert bg-green text-sm"
{{ include('alert.html.twig', {'color': 'red', 'class': 'flex items-center justify-center'}) }}
// class="alert bg-red text-md flex items-center justify-center"
// class="alert bg-red flex items-center justify-center"
CVA and Tailwind CSS
--------------------
@@ -118,7 +118,7 @@ when multiple other variant conditions are met:
// class="alert bg-green text-sm"
{{ include('alert.html.twig', {color: 'red', size: 'md'}) }}
// class="alert bg-green text-lg font-bold"
// class="alert bg-green text-md font-bold"
Default Variants
----------------
@@ -128,7 +128,7 @@ If no variants match, you can define a default set of classes to apply:
.. code-block:: html+twig
{% set alert = html_cva(
base='alert ',
base='alert',
variants={
color: {
blue: 'bg-blue',
@@ -158,7 +158,7 @@ If no variants match, you can define a default set of classes to apply:
{# index.html.twig #}
{{ include('alert.html.twig', {color: 'red', size: 'lg'}) }}
// class="alert bg-red text-lg font-bold rounded-md"
// class="alert bg-red text-lg rounded-md"
.. note::