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.
14 lines
356 B
14 lines
356 B
|
|
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;
|
|
}
|
|
}
|