-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[package.json] Remove @angular/flex-layout ; [src/assets/styles/flex.…
…scss] Replace with this ; [.github/workflows/main.yml] Use latest actions
- Loading branch information
1 parent
a0d6b52
commit 7fd3f37
Showing
12 changed files
with
143 additions
and
83 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,16 @@ | ||
<section class="hero" fxLayout="column"> | ||
<nav fxFlex fxLayout="row" style="padding-top: 20px; margin-bottom: 20px"> | ||
<a fxFlex.gt-md="50" routerLink="/"> | ||
<section class="hero flex-direction-column"> | ||
<nav class="flex-direction-row" style="padding-top: 20px; margin-bottom: 20px"> | ||
<a class="gt-md-width-pc-50" routerLink="/"> | ||
<h1>offscale.io</h1> | ||
<h3>engineering and<br/>research that scales</h3> | ||
</a> | ||
<h1 fxFlex fxLayoutAlign="end" ngStyle.lt-md="font-size: small"> | ||
<h1> | ||
<a href="https://github.com/offscale"> | ||
<img alt="GitHub repos for Offscale" | ||
height="50px" | ||
ngStyle.lt-md="height: 30px; padding: 0 10px" src="/assets/github-white.svg"/> | ||
width="51" height="50" id="github-logo" | ||
ngSrc="/assets/github-white.svg" /> | ||
</a> | ||
</h1> | ||
</nav> | ||
<ng-content fxFlex="auto"></ng-content> | ||
<ng-content></ng-content> | ||
</section> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,21 +1,13 @@ | ||
import { NgModule } from '@angular/core'; | ||
import { CommonModule } from '@angular/common'; | ||
import {CommonModule, NgOptimizedImage} from '@angular/common'; | ||
import { RouterModule } from '@angular/router'; | ||
|
||
import { FlexLayoutModule } from '@angular/flex-layout'; | ||
|
||
import { NavbarComponent } from './navbar.component'; | ||
|
||
|
||
@NgModule({ | ||
declarations: [NavbarComponent], | ||
exports: [ | ||
NavbarComponent | ||
], | ||
imports: [ | ||
CommonModule, | ||
FlexLayoutModule, | ||
RouterModule | ||
] | ||
exports: [NavbarComponent], | ||
imports: [CommonModule, RouterModule, NgOptimizedImage] | ||
}) | ||
export class NavbarModule {} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.