mirror of
https://gitee.com/ant-design-blazor/ant-design-blazor.git
synced 2024-12-15 17:31:42 +08:00
15 lines
271 B
C#
15 lines
271 B
C#
namespace AntBlazor
|
|
{
|
|
public class StyleHelper
|
|
{
|
|
public static string ToCssPixel(string value)
|
|
{
|
|
if (value.EndsWith("px"))
|
|
{
|
|
return value;
|
|
}
|
|
|
|
return $"{value}px";
|
|
}
|
|
}
|
|
} |