mirror of
https://github.com/docker/docs.git
synced 2026-03-27 14:28:47 +07:00
Optimimal minimum window size for windows
This commit is contained in:
@@ -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;
|
||||
@@ -184,7 +185,7 @@
|
||||
color: @gray-normal;
|
||||
display: none;
|
||||
border: 1px solid @color-divider;
|
||||
|
||||
|
||||
}
|
||||
.menu-overlay {
|
||||
z-index: 999;
|
||||
|
||||
Reference in New Issue
Block a user