Skip to content

Commit

Permalink
Update Dev Logs
Browse files Browse the repository at this point in the history
  • Loading branch information
Justin Campbell committed Jul 9, 2020
1 parent 0b700df commit 594591d
Showing 1 changed file with 15 additions and 1 deletion.
16 changes: 15 additions & 1 deletion Dev Logs.md
Original file line number Diff line number Diff line change
Expand Up @@ -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 -->
### 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

<!-- ### Thursday - 7/9/20 -->
<!-- ### Friday - 7/10/20 -->
<!-- ### Saturday - 7/11/20 -->
Expand Down

0 comments on commit 594591d

Please sign in to comment.