ant-design-blazor/components/core/Helpers/StyleHelper.cs
2020-05-29 00:33:49 +08:00

11 lines
303 B
C#

namespace AntDesign
{
public static class StyleHelper
{
//fix the user set 100% or xxxVH etc..
public static string ToCssPixel(string value) => int.TryParse(value, out var _) ? $"{value}px" : value;
public static string ToCssPixel(int value) => $"{value}px";
}
}