mirror of
https://github.com/Foundry376/Mailspring.git
synced 2025-02-03 13:59:12 +08:00
fix(onboarding): Missing require for Actions, bad CSS
This commit is contained in:
parent
1ba3a64785
commit
fa34fc303f
3 changed files with 7 additions and 3 deletions
|
@ -1,6 +1,7 @@
|
||||||
React = require 'react'
|
React = require 'react'
|
||||||
{shell} = require 'electron'
|
{shell} = require 'electron'
|
||||||
classnames = require 'classnames'
|
classnames = require 'classnames'
|
||||||
|
{Actions} = require 'nylas-exports'
|
||||||
{RetinaImg} = require 'nylas-component-kit'
|
{RetinaImg} = require 'nylas-component-kit'
|
||||||
PageRouterStore = require './page-router-store'
|
PageRouterStore = require './page-router-store'
|
||||||
OnboardingActions = require './onboarding-actions'
|
OnboardingActions = require './onboarding-actions'
|
||||||
|
|
|
@ -415,7 +415,7 @@
|
||||||
}
|
}
|
||||||
.btn-install {
|
.btn-install {
|
||||||
display:inline-block;
|
display:inline-block;
|
||||||
width: 70px;
|
width: 56px;
|
||||||
margin: 24px;
|
margin: 24px;
|
||||||
margin-right: 7px;
|
margin-right: 7px;
|
||||||
margin-left: 14px;
|
margin-left: 14px;
|
||||||
|
@ -512,11 +512,12 @@
|
||||||
border-top: 1px solid #d4d4d4;
|
border-top: 1px solid #d4d4d4;
|
||||||
|
|
||||||
.btn-continue {
|
.btn-continue {
|
||||||
font-size: 18px;
|
font-size: 17px;
|
||||||
font-weight: 300;
|
font-weight: 300;
|
||||||
margin: 20px 0;
|
margin: 20px 0;
|
||||||
padding: 12px 0;
|
|
||||||
width: 296px;
|
width: 296px;
|
||||||
|
line-height: 2.5em;
|
||||||
|
height: 2.5em;
|
||||||
}
|
}
|
||||||
.btn-back {
|
.btn-back {
|
||||||
color: rgba(0,0,0,0.4);
|
color: rgba(0,0,0,0.4);
|
||||||
|
|
|
@ -86,6 +86,8 @@ body.platform-win32 {
|
||||||
&.btn-large {
|
&.btn-large {
|
||||||
font-size: @font-size-base;
|
font-size: @font-size-base;
|
||||||
padding: 0 1.3em;
|
padding: 0 1.3em;
|
||||||
|
line-height: 2.2em;
|
||||||
|
height: 2.3em;
|
||||||
}
|
}
|
||||||
&.btn-larger {
|
&.btn-larger {
|
||||||
font-size: @font-size-large;
|
font-size: @font-size-large;
|
||||||
|
|
Loading…
Reference in a new issue