Skip to content

Commit

Permalink
Wrapping things up.
Browse files Browse the repository at this point in the history
  • Loading branch information
joeblas committed Dec 1, 2017
1 parent 779171f commit 518447b
Show file tree
Hide file tree
Showing 7 changed files with 15 additions and 5 deletions.
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,7 @@ settings-demo.json
settings-staging.json
settings-production.json
settings-development.json
Talking
Visit
joes-mbp:cloudcontrol
.DS_Store
2 changes: 1 addition & 1 deletion imports/api/Invoices/methods.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import rateLimit from '../../modules/rate-limit';
import { centsToDollars, formatAsCurrency } from '../../modules/currency-conversions';
import generateInvoiceAsPDF from '../../modules/server/generate-invoice-as-pdf';

const stripe = Stripe(Meteor.settings.private.stripe);
const stripe = Stripe(Meteor.settings.stripe);

const totalLineItems = lineItems =>
lineItems.reduce((sum, { amount, quantity }) => {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,8 @@
margin: 25px 0 0;
padding-top: 20px;
border-top: 1px solid $gray-lighter;

}



2 changes: 1 addition & 1 deletion imports/ui/pages/Login/Login.js
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ class Login extends React.Component {
</FormGroup>
<Button type="submit" bsStyle="success">Log In</Button>
<AccountPageFooter>
<p>{'Don\'t have an account?'} <Link to="/signup">Sign Up</Link>.</p>
<p>{'Don\'t have an account?'} <Link to="/signup" className="footerLink">Sign Up</Link>.</p>
</AccountPageFooter>
</form>
</Col>
Expand Down
2 changes: 0 additions & 2 deletions imports/ui/pages/Recipients/Recipients.js
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,6 @@ const Recipients = ({ loading, recipients, match, history }) => (!loading ? (
<thead>
<tr>
<th>Name</th>
<th>Total Due</th>
<th>Total Paid</th>
</tr>
</thead>
<tbody>
Expand Down
2 changes: 1 addition & 1 deletion imports/ui/pages/Signup/Signup.js
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,7 @@ class Signup extends React.Component {
</FormGroup>
<Button type="submit" bsStyle="success">Sign Up</Button>
<AccountPageFooter>
<p>Already have an account? <Link to="/login">Log In</Link>.</p>
<p>Already have an account? <Link to="/login" className="footerLink">Log In</Link>.</p>
</AccountPageFooter>
</form>
</Col>
Expand Down
5 changes: 5 additions & 0 deletions imports/ui/stylesheets/bootstrap-overrides.scss
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
@import './mixins';
@import './colors.scss';

.page-header {
margin-top: 0;
Expand All @@ -13,4 +14,8 @@

a {
color: white;
}

.footerLink {
color: $dark-blue;
}

0 comments on commit 518447b

Please sign in to comment.