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/Z-Index.cs

14 lines
356 B

2 years ago

namespace Connected
{
public class ZIndex
{
public int Drawer { get; set; } = 1100;
public int Popover { get; set; } = 1200;
public int AppBar { get; set; } = 1300;
public int Dialog { get; set; } = 1400;
public int Snackbar { get; set; } = 1500;
public int Tooltip { get; set; } = 1600;
}
}