feat: add contact modal

This commit is contained in:
QiShaoXuan
2022-10-19 11:51:01 +08:00
parent 90dba82a59
commit 0a4c262b50
13 changed files with 547 additions and 69 deletions

View File

@@ -34,6 +34,10 @@ export const lightTheme: AffineTheme = {
family: `Avenir Next, ${basicFontFamily}`,
family2: `Roboto Mono, ${basicFontFamily}`,
},
zIndex: {
modal: 1000,
popover: 100,
},
};
export const darkTheme: AffineTheme = {

View File

@@ -42,6 +42,10 @@ export interface AffineTheme {
family: string;
family2: string;
};
zIndex: {
modal: number;
popover: number;
};
}
export interface AffineThemeCSSVariables {