@@ -894,19 +894,50 @@ $helpers: (
894894 /// in a variety of ways; such as "preserve that aspect ratio"
895895 /// or "stretch up and take up as much space as possible".
896896 ///
897- /// @example fit -cover
898- /// @example fit -scale-down
897+ /// @example object -cover
898+ /// @example object -scale-down
899899 ///
900900 ' object-fit' : (
901901 ' enabled' : true, // true or false
902902 ' property' : ' object-fit' , // css property name (don't change it !)
903- ' prefix' : ' fit -' , // prefix of class name
903+ ' prefix' : ' object -' , // prefix of class name
904904 ' specificity' : !important , // or null
905905 ' unit' : null, // length units (px, rem, em, %, vh, vw etc)
906906 ' specs' : null, // for extra variables
907907 ' values' : (fill , contain , cover , none , scale-down )
908908 ),
909909 ///
910+ /// Object Position
911+ ///
912+ /// The object-position property is used together
913+ /// with object-fit to specify how an <img> or <video>
914+ /// should be positioned with x/y coordinates inside
915+ /// its "own content box".
916+ ///
917+ /// @example object-left
918+ /// @example object-left-bottom
919+ ///
920+ ' object-position' : (
921+ ' enabled' : true, // true or false
922+ ' property' : ' object-position' , // css property name (don't change it !)
923+ ' prefix' : ' object-' , // prefix of class name
924+ ' specificity' : !important , // or null
925+ ' unit' : null, // length units (px, rem, em, %, vh, vw etc)
926+ ' specs' : null, // for extra variables
927+ ' values' : (
928+ // class name (suffix), value
929+ (" bottom" , bottom ),
930+ (" center" , center ),
931+ (" left" , left ),
932+ (" left-bottom" , left bottom ),
933+ (" left-top" , left top ),
934+ (" right" , right ),
935+ (" right-bottom" , right bottom ),
936+ (" right-top" , right top ),
937+ (" top" , top )
938+ )
939+ ),
940+ ///
910941 /// Order
911942 ///
912943 /// The order property specifies the order
@@ -1260,6 +1291,23 @@ $helpers: (
12601291 ' values' : (none , auto , text , all )
12611292 ),
12621293 ///
1294+ /// Vertical Align
1295+ ///
1296+ /// The vertical-align property sets
1297+ /// the vertical alignment of an element.
1298+ ///
1299+ /// @example align-middle
1300+ ///
1301+ ' vertical-align' : (
1302+ ' enabled' : true, // true or false
1303+ ' property' : ' vertical-align' , // css property name (don't change it !)
1304+ ' prefix' : ' align-' , // prefix of class name
1305+ ' specificity' : !important , // or null
1306+ ' unit' : null, // length units (px, rem, em, %, vh, vw etc)
1307+ ' specs' : null, // for extra variables
1308+ ' values' : (baseline , top , middle , bottom , text-top , text-bottom , sub , super )
1309+ ),
1310+ ///
12631311 /// Width
12641312 ///
12651313 /// The width property sets the width of an element.
0 commit comments