diff --git a/Dev Logs.md b/Dev Logs.md index 32d4947..514f4b8 100644 --- a/Dev Logs.md +++ b/Dev Logs.md @@ -40,7 +40,21 @@ These are daily and weekly summaries of the work thats been done on webqueue2. T - Because of time and a need to get something out, I will forego a responsive table for now - Tomorrow should be spent working on a reponsive drawer interface - +### Wednesday - 7/8/20 +- Continues working on a responsive drawer interface +- A truly responsive drawer interface seems would be something that adapts to every discrete viewport width. This does not seem an easy way forward. However, breakpoints can be considered instead. Using MUI's [`useMediaQuery()` hook](https://material-ui.com/components/use-media-query/) and predetermined percentage values I can create a usable though limited alternative. + - _Ex:_ + ```js + drawer: { + [theme.breakpoints.up('xl')]: { + width: `calc(60%)`, + flexShrink: 0, + }, + }, + ``` +- Implemented custom toolbar with stateful action buttons +- Added dark mode toggle using custom toolbar +