Skip to content

Commit

Permalink
feat(calendar): calendar initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
SHVM-09 committed Jul 30, 2024
1 parent d09d2ca commit 0004a00
Show file tree
Hide file tree
Showing 22 changed files with 694 additions and 346 deletions.
5 changes: 5 additions & 0 deletions angular.json
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@
}
],
"styles": [
"@angular/material/prebuilt-themes/azure-blue.css",
"src/styles.css"
],
"scripts": []
Expand Down Expand Up @@ -95,12 +96,16 @@
}
],
"styles": [
"@angular/material/prebuilt-themes/azure-blue.css",
"src/styles.css"
],
"scripts": []
}
}
}
}
},
"cli": {
"analytics": "4874a425-0611-4a48-a251-fd4595f85997"
}
}
43 changes: 40 additions & 3 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 3 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,12 @@
"private": true,
"dependencies": {
"@angular/animations": "^18.1.0",
"@angular/cdk": "^18.1.2",
"@angular/common": "^18.1.0",
"@angular/compiler": "^18.1.0",
"@angular/core": "^18.1.0",
"@angular/forms": "^18.1.0",
"@angular/forms": "^18.1.2",
"@angular/material": "^18.1.2",
"@angular/platform-browser": "^18.1.0",
"@angular/platform-browser-dynamic": "^18.1.0",
"@angular/router": "^18.1.0",
Expand Down
7 changes: 6 additions & 1 deletion src/app/app-routing.module.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,12 @@
import { NgModule } from '@angular/core';
import { RouterModule, Routes } from '@angular/router';
import { CalendarComponent } from './calendar/calendar.component';
import { InfoComponent } from './info/info.component';

const routes: Routes = [];
const routes: Routes = [
{ path: '', component: CalendarComponent },
{ path: 'info', component: InfoComponent }
];

@NgModule({
imports: [RouterModule.forRoot(routes)],
Expand Down
10 changes: 10 additions & 0 deletions src/app/app.component.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
.navbar-main{
position:fixed;
top:0;
width:100%;
z-index: 99;
}
.spacer {
flex: 1 1 auto;
}

Loading

0 comments on commit 0004a00

Please sign in to comment.