mirror of
https://github.com/Foundry376/Mailspring.git
synced 2025-03-01 10:33:14 +08:00
Decrease container minWidth to allow window to snap to half a screen (#2283)
This commit is contained in:
parent
4549bf5ec5
commit
ae3d88f191
3 changed files with 3 additions and 3 deletions
|
@ -47,7 +47,7 @@ const PREF_DESCENDING_ORDER = 'core.reading.descendingOrderMessageList';
|
|||
class MessageList extends React.Component<{}, MessageListState> {
|
||||
static displayName = 'MessageList';
|
||||
static containerStyles = {
|
||||
minWidth: 500,
|
||||
minWidth: 480,
|
||||
maxWidth: 999999,
|
||||
};
|
||||
|
||||
|
|
|
@ -69,7 +69,7 @@ export class SidebarPluginContainer extends React.Component {
|
|||
static containerStyles = {
|
||||
order: 1,
|
||||
flexShrink: 0,
|
||||
minWidth: 200,
|
||||
minWidth: 150,
|
||||
maxWidth: 300,
|
||||
};
|
||||
|
||||
|
|
|
@ -34,7 +34,7 @@ class ThreadList extends React.Component<{}, { style: string; syncing: boolean }
|
|||
static displayName = 'ThreadList';
|
||||
|
||||
static containerStyles = {
|
||||
minWidth: DOMUtils.getWorkspaceCssNumberProperty('thread-list-min-width', 300),
|
||||
minWidth: DOMUtils.getWorkspaceCssNumberProperty('thread-list-min-width', 100),
|
||||
maxWidth: DOMUtils.getWorkspaceCssNumberProperty('thread-list-max-width', 3000),
|
||||
};
|
||||
|
||||
|
|
Loading…
Reference in a new issue