From f916426d58ddf1d3b27bc207ff177886bd7c99eb Mon Sep 17 00:00:00 2001 From: Alaa Badran Date: Tue, 21 Dec 2021 09:04:35 +0200 Subject: [PATCH] Add text-start and text-end These are useful for RTL languages --- src/corePlugins.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/corePlugins.js b/src/corePlugins.js index 56a1f8edefb9..42eabc620a76 100644 --- a/src/corePlugins.js +++ b/src/corePlugins.js @@ -1502,6 +1502,8 @@ export let corePlugins = { '.text-center': { 'text-align': 'center' }, '.text-right': { 'text-align': 'right' }, '.text-justify': { 'text-align': 'justify' }, + '.text-start': { 'text-align': 'start' }, + '.text-end': { 'text-align': 'end' }, }) },