Skip to content

Commit

Permalink
fix: fix typo in Lumo utility align-start class names (#7038) (#7039)
Browse files Browse the repository at this point in the history
Co-authored-by: Serhii Kulykov <[email protected]>
Co-authored-by: Zhe Sun <[email protected]>
  • Loading branch information
3 people authored Jan 13, 2025
1 parent 1d683fc commit 43074c9
Showing 1 changed file with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ public static final class Small {
public static final String BASELINE = "sm:items-baseline";
public static final String CENTER = "sm:items-center";
public static final String END = "sm:items-end";
public static final String START = "sm:tems-start";
public static final String START = "sm:items-start";
public static final String STRETCH = "sm:items-stretch";

private Small() {
Expand All @@ -105,7 +105,7 @@ public static final class Medium {
public static final String BASELINE = "md:items-baseline";
public static final String CENTER = "md:items-center";
public static final String END = "md:items-end";
public static final String START = "md:tems-start";
public static final String START = "md:items-start";
public static final String STRETCH = "md:items-stretch";

private Medium() {
Expand All @@ -121,7 +121,7 @@ public static final class Large {
public static final String BASELINE = "lg:items-baseline";
public static final String CENTER = "lg:items-center";
public static final String END = "lg:items-end";
public static final String START = "lg:tems-start";
public static final String START = "lg:items-start";
public static final String STRETCH = "lg:items-stretch";

private Large() {
Expand All @@ -137,7 +137,7 @@ public static final class XLarge {
public static final String BASELINE = "xl:items-baseline";
public static final String CENTER = "xl:items-center";
public static final String END = "xl:items-end";
public static final String START = "xl:tems-start";
public static final String START = "xl:items-start";
public static final String STRETCH = "xl:items-stretch";

private XLarge() {
Expand All @@ -153,7 +153,7 @@ public static final class XXLarge {
public static final String BASELINE = "2xl:items-baseline";
public static final String CENTER = "2xl:items-center";
public static final String END = "2xl:items-end";
public static final String START = "2xl:tems-start";
public static final String START = "2xl:items-start";
public static final String STRETCH = "2xl:items-stretch";

private XXLarge() {
Expand Down

0 comments on commit 43074c9

Please sign in to comment.