mirror of https://github.com/docker/docs.git
UI tweaks
This commit is contained in:
parent
fd30c0fef6
commit
c6b88acaef
|
|
@ -27,7 +27,7 @@ app.on('open-url', function (event, url) {
|
|||
app.on('ready', function () {
|
||||
var mainWindow = new BrowserWindow({
|
||||
width: size.width || 1000,
|
||||
height: size.height || 600,
|
||||
height: size.height || 780,
|
||||
'min-width': 1000,
|
||||
'min-height': 600,
|
||||
'standard-window': false,
|
||||
|
|
|
|||
|
|
@ -390,7 +390,7 @@ export default {
|
|||
// Assign to a column if not done yet
|
||||
if (!layerProgress[data.id].column) {
|
||||
// test if we can still add layers to that column
|
||||
if (columns.progress[columns.toFill].nbLayers === columns.progress[columns.toFill].maxLayers) {
|
||||
if (columns.progress[columns.toFill].nbLayers === columns.progress[columns.toFill].maxLayers && columns.toFill < columns.amount - 1) {
|
||||
columns.toFill++;
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -245,7 +245,7 @@
|
|||
|
||||
.sidebar-buttons {
|
||||
border-top: 1px solid #F0F4F8;
|
||||
min-height: 36px;
|
||||
min-height: 48px;
|
||||
flex: 0 auto;
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
|
|
@ -258,7 +258,7 @@
|
|||
height: 18px;
|
||||
}
|
||||
.btn-sidebar {
|
||||
font-size: 11px;
|
||||
font-size: 13px;
|
||||
font-weight: 500;
|
||||
color: @brand-primary;
|
||||
|
||||
|
|
@ -266,7 +266,7 @@
|
|||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
min-width: 44px;
|
||||
min-width: 48px;
|
||||
|
||||
&:active {
|
||||
img, .text {
|
||||
|
|
|
|||
Loading…
Reference in New Issue