Skip to content

Commit

Permalink
Merge pull request #190 from UnstableDesign/189-enable-one-click-proj…
Browse files Browse the repository at this point in the history
…ect-sharing

189 enable one click project sharing
  • Loading branch information
Devendork authored Oct 14, 2024
2 parents cd80d8d + 3762772 commit 0768fbb
Show file tree
Hide file tree
Showing 38 changed files with 1,620 additions and 485 deletions.
6 changes: 3 additions & 3 deletions src/app/app-routing.module.ts
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
import { NgModule } from '@angular/core';
import { Routes, RouterModule } from '@angular/router';
import { AppComponent } from './app.component';
import { MixerModule } from './mixer/mixer.module';


const routes: Routes = [
export const routes: Routes = [

{
path: '',
path: '**',
component: AppComponent,
children: []
}
Expand Down
9 changes: 8 additions & 1 deletion src/app/app.component.html
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<!--The content below is only a placeholder and can be replaced.-->


<appKeycodes
(onUndo)="undo()"
Expand Down Expand Up @@ -290,6 +290,13 @@
color="primary">
<i class="fa-solid fa-download"></i>
</button>

<button mat-mini-fab
matTooltip="share"
color="accent"
(click)="share()">
<i class="fa-solid fa-share-nodes"></i>
</button>

</div>
</mat-toolbar>
Expand Down
2 changes: 2 additions & 0 deletions src/app/app.component.scss
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
align-items: stretch;
}


.mat-mdc-icon-button{
font-size: 14px;
position: relative;
Expand Down Expand Up @@ -160,6 +161,7 @@
font-size: 14px;
display: flex;
flex: 0 1;
gap: 8px;
}

.design_mode{
Expand Down
Loading

0 comments on commit 0768fbb

Please sign in to comment.