Skip to content

Commit

Permalink
Debugging
Browse files Browse the repository at this point in the history
  • Loading branch information
DerekTBrown committed Aug 26, 2017
1 parent 566ed7b commit 62f3119
Show file tree
Hide file tree
Showing 11 changed files with 34 additions and 2,186 deletions.
4 changes: 2 additions & 2 deletions client/imports/account/login.component.html
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,8 @@ <h1> Login </h1>

<!-- Login Button -->
<md-list-item fxLayout fxLayoutAlign="center">
<button md-raised-button [routerLink]="['/account','create']"><md-icon>person_add</md-icon>Create User</button>
<button md-raised-button><md-icon>vpn_key</md-icon>Forgot Password</button>
<a md-raised-button [routerLink]="['/account','create']"><md-icon>person_add</md-icon>Create User</a>
<a md-raised-button><md-icon>vpn_key</md-icon>Forgot Password</a>
<button md-raised-button><md-icon>check</md-icon>Login</button>
</md-list-item>

Expand Down
11 changes: 8 additions & 3 deletions client/imports/course/course_view.component.scss
Original file line number Diff line number Diff line change
Expand Up @@ -17,18 +17,19 @@ div.course_view{
md-card.info {

input,textarea{
font-family: 'Roboto', sans-serif !important;

width: 100%;
border: none;
background-color: transparent;
color: #000 !important;
}

div.title{
font-size: 21px;
font-weight: 400;

.name{
width: 100%;
font-size: 21px !important;
font-weight: 400 !important;
}

div.left, div.right{
Expand All @@ -44,6 +45,9 @@ div.course_view{
flex-shrink: 0;

input{
font-size: 24px;
font-weight: 400;

color: #fff !important;
line-height: $left-size;
text-align: center;
Expand All @@ -55,6 +59,7 @@ div.course_view{
margin-left: 15px;

input{
font-size: 18px;
color: #000 !important;
}

Expand Down
3 changes: 2 additions & 1 deletion imports/api/tuxlab-api.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,12 @@ declare module 'tuxlab-api/vm' {

}
declare module 'tuxlab-api/environment' {
import { Profile } from '../../both/models/user.model';
import { VM } from 'tuxlab-api/vm';
export abstract class Environment implements VM {
setLabData: (data: any) => void;
getLabData: () => void;
getUserProfile: () => any;
getUserProfile: () => Profile;
getUserID(): string;
getName(): string;
getOrg(): string;
Expand Down
Loading

0 comments on commit 62f3119

Please sign in to comment.