-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added Share button and also optimised the storage of text and also ad…
…ed media query too
- Loading branch information
1 parent
7e1a71b
commit aac3c4e
Showing
1 changed file
with
11 additions
and
25 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,27 +1,13 @@ | ||
/* <mat-toolbar color="primary"> | ||
<span>NotePage</span> | ||
<span class="spacer"></span> | ||
<button mat-icon-button matTooltip="Lock the Page"> | ||
<mat-icon>lock</mat-icon> | ||
</button> | ||
<button mat-icon-button matTooltip="Share the Link" (click)="sharePage()"> | ||
<mat-icon>share</mat-icon> | ||
</button> | ||
</mat-toolbar> | ||
*/ | ||
.spacer { | ||
flex: 1 1 auto; | ||
} | ||
|
||
/* Write css for above html code */ | ||
/* Path: src/app/navigation/navigation.component.css */ | ||
.spacer { | ||
flex: 1 1 auto; | ||
} | ||
.icon-button { | ||
margin-right: 10vh; | ||
} | ||
|
||
.icon-button{ | ||
margin-right: 10vh; | ||
} | ||
|
||
.title{ | ||
margin-left: 10vh; | ||
font-size: 35px; | ||
cursor: pointer; | ||
} | ||
.title { | ||
margin-left: 10vh; | ||
font-size: 35px; | ||
cursor: pointer; | ||
} |