From 26bd819949b25e16a3ddee4fe45df9af306c07de Mon Sep 17 00:00:00 2001 From: Alaa Badran Date: Sat, 26 Feb 2022 03:43:58 +0300 Subject: [PATCH] Add text-start and text-end (#6656) 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 dbdea4b08796..a6aab9b6203d 100644 --- a/src/corePlugins.js +++ b/src/corePlugins.js @@ -1522,6 +1522,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' }, }) },