Increase minimum width from 200 -> 225
This commit is contained in:
parent
085a3856e0
commit
dc1e728a2e
1 changed files with 2 additions and 2 deletions
|
@ -1,6 +1,6 @@
|
||||||
export const constrainSidebarWidth = (num: number) => {
|
export const constrainSidebarWidth = (num: number) => {
|
||||||
if (num < 200) {
|
if (num < 225) {
|
||||||
return 200;
|
return 225;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (num > 400) {
|
if (num > 400) {
|
||||||
|
|
Reference in a new issue