fix banner position and color

This commit is contained in:
Samira Mokaram
2020-09-21 14:14:19 +02:00
parent c5d4458962
commit a6178e4aff
4 changed files with 49 additions and 6 deletions
+4
View File
@@ -44,6 +44,8 @@ export const lightTheme = createTheme({
banner: {
info: '#2E77D0',
error: '#E22134',
textColor: '#FFFFFF',
linkColor: '#000000',
},
border: '#E6E6E6',
textContrast: '#000000',
@@ -100,6 +102,8 @@ export const darkTheme = createTheme({
banner: {
info: '#2E77D0',
error: '#E22134',
textColor: '#FFFFFF',
linkColor: '#000000',
},
border: '#E6E6E6',
textContrast: '#FFFFFF',
+2
View File
@@ -64,6 +64,8 @@ type PaletteAdditions = {
banner: {
info: string;
error: string;
textColor: string;
linkColor: string;
};
};