From 6816ad66a0fa15741455bfa900e35b58f41ceb58 Mon Sep 17 00:00:00 2001 From: Adam Wathan Date: Sun, 12 Sep 2021 16:26:14 -0400 Subject: [PATCH] Add `align-sub` and `align-super` utilities Co-Authored-By: TCatinaud <5670642+tcatinaud@users.noreply.github.com> --- src/corePlugins.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/corePlugins.js b/src/corePlugins.js index f1f319411f8b..2719a83469a3 100644 --- a/src/corePlugins.js +++ b/src/corePlugins.js @@ -1485,6 +1485,8 @@ export let verticalAlign = ({ addUtilities }) => { '.align-bottom': { 'vertical-align': 'bottom' }, '.align-text-top': { 'vertical-align': 'text-top' }, '.align-text-bottom': { 'vertical-align': 'text-bottom' }, + '.align-sub': { 'vertical-align': 'sub' }, + '.align-super': { 'vertical-align': 'super' }, }) }