You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Connected.Components/Themes/Models/Breakpoints.cs

17 lines
502 B

2 years ago
using System.Diagnostics.CodeAnalysis;
namespace Connected
{
#pragma warning disable IDE1006 // must being with upper case
[ExcludeFromCodeCoverage]
public class Breakpoints
{
public string xs { get; set; } = "0px";
public string sm { get; set; } = "600px";
public string md { get; set; } = "960px";
public string lg { get; set; } = "1280px";
public string xl { get; set; } = "1920px";
public string xxl { get; set; } = "2560px";
}
}