Skip to content
This repository has been archived by the owner on Apr 4, 2022. It is now read-only.

Commit

Permalink
Merge commit 'ac2c63cf08ca689d08ed0a47c43f8012ed096875' into staging
Browse files Browse the repository at this point in the history
# Conflicts:
#	src/app/inbox/inbox.component.html
#	src/favicon.ico
  • Loading branch information
tboeckmann committed Nov 24, 2019
2 parents 9b718a7 + ac2c63c commit d6cfe4c
Show file tree
Hide file tree
Showing 6 changed files with 27 additions and 4 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "mailchain-web",
"version": "0.0.4",
"version": "0.0.5",
"scripts": {
"ng": "ng",
"start": "ng serve",
Expand Down
6 changes: 4 additions & 2 deletions src/app/inbox/inbox.component.html
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
<div class="row">
<div class="col-md-6">
<h1 class="page-title"><img src="../../assets/logo.png"> Mailchain</h1>
<h1 class="page-title text-primary">
<img src="../../assets/mailchain_logo_text.png" alt="Mailchain" class="header-logo">
</h1>
</div>
<div class="col-md-6">
<div class="row">
Expand All @@ -27,7 +29,7 @@ <h1 class="page-title"><img src="../../assets/logo.png"> Mailchain</h1>
<div id="actionButtons" class="mb-4">
<button class="btn btn-secondary btn-block" type="button" id="fetch-messages-btn" (click)="getMails(false)"
[disabled]="fetchMessagesDisabled">{{fetchMessagesText}}</button>
<a class="btn btn-danger btn-block" href="#" id="compose" (click)="composeMessage()">Compose</a>
<a class="btn btn-primary btn-block" href="#" id="compose" (click)="composeMessage()">Compose</a>
</div>

<div class="card">
Expand Down
4 changes: 4 additions & 0 deletions src/app/inbox/inbox.component.scss
Original file line number Diff line number Diff line change
Expand Up @@ -15,4 +15,8 @@
.accountNameRecord {
display: block;
padding: 0 1rem 0.5rem 1rem;
}

.header-logo {
max-width: 180px;
}
Binary file added src/assets/mailchain_logo_text.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified src/favicon.ico
Binary file not shown.
19 changes: 18 additions & 1 deletion src/scss/_variables.scss
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,21 @@ $fa-font-path: "~font-awesome/fonts";


$footer-height: 60px;
$footer-margin-offset: 45px;
$footer-margin-offset: 45px;

// Color variables
$custom: #13ce67;
$white: #ffffff;

$primary: #58638a;
$success: #519965;
$info: #1f1420;
$warning: #ce892d;
$danger: #f44336;
$dark: #0f1f3e;
$light: #f8f9fa;

// $background: #B2B6CC;
// #A84258 // burgundy red
// #7983A3 // light purple
// #F5F7F5 // light grey

0 comments on commit d6cfe4c

Please sign in to comment.