mirror of https://github.com/docker/docs.git
Optimimal minimum window size for windows
This commit is contained in:
parent
a5c0d03714
commit
1290285a72
|
@ -52,8 +52,8 @@ app.on('ready', function () {
|
|||
var mainWindow = new BrowserWindow({
|
||||
width: size.width || 800,
|
||||
height: size.height || 600,
|
||||
'min-width': os.platform() === 'win32' ? 450 : 700,
|
||||
'min-height': os.platform() === 'win32' ? 290 : 500,
|
||||
'min-width': os.platform() === 'win32' ? 400 : 700,
|
||||
'min-height': os.platform() === 'win32' ? 260 : 500,
|
||||
'standard-window': false,
|
||||
resizable: true,
|
||||
frame: false,
|
||||
|
|
|
@ -137,6 +137,7 @@
|
|||
}
|
||||
}
|
||||
.results-filters {
|
||||
overflow: hidden;
|
||||
margin: 1.2rem 1.2rem 0 0;
|
||||
.results-filter-title {
|
||||
font-size: 12px;
|
||||
|
|
Loading…
Reference in New Issue