Pin sidebar with a button

This commit is contained in:
Wojciech Adaszynski
2020-05-19 16:30:50 +02:00
parent 986b230016
commit 2aacf677e9
10 changed files with 274 additions and 47 deletions
+8
View File
@@ -56,6 +56,10 @@ export const lightTheme = createTheme({
link: '#0A6EBE',
gold: yellow.A700,
sidebar: '#171717',
pinSidebarButton: {
icon: '#BDBDBD',
background: '#404040',
},
},
});
@@ -98,5 +102,9 @@ export const darkTheme = createTheme({
link: '#0A6EBE',
gold: yellow.A700,
sidebar: '#424242',
pinSidebarButton: {
icon: '#181818',
background: '#BDBDBD',
},
},
});
+4
View File
@@ -51,6 +51,10 @@ type PaletteAdditions = {
default: string;
};
};
pinSidebarButton: {
icon: string;
background: string;
};
};
export type BackstagePalette = Palette & PaletteAdditions;