Skip to content

Commit 948d362

Browse files
committed
feat: change title, add basic styling
1 parent 4d10094 commit 948d362

File tree

4 files changed

+11
-5
lines changed

4 files changed

+11
-5
lines changed
Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,9 @@
1-
<div class="flex">
2-
<aside class="flex flex-col">
1+
<div class="flex h-full w-full">
2+
<aside class="flex flex-col p-3">
33
Basic
44
<a hlmBtn variant="link" routerLink="/basic/minimal">Minimal</a>
55
Custom
66
<a hlmBtn variant="link" routerLink="/custom/alert-block">Alert Block</a>
7-
87
</aside>
9-
<main><router-outlet></router-outlet></main>
8+
<main class="flex-auto"><router-outlet></router-outlet></main>
109
</div>

apps/examples/src/app/app.routes.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ import { BasicMinimal } from '../basic/minimal/basic-minimal.component';
33
import { CustomAlertBlockPage } from '../custom/alert-block/custom-alert-block.page';
44

55
export const appRoutes: Route[] = [
6+
{ path: '', redirectTo: 'basic/minimal', pathMatch: 'full' },
67
{ path: 'basic/minimal', component: BasicMinimal },
78
{
89
path: 'custom/alert-block',

apps/examples/src/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<html lang="en">
33
<head>
44
<meta charset="utf-8" />
5-
<title>test</title>
5+
<title>Block Note Angular</title>
66
<base href="/" />
77
<meta name="viewport" content="width=device-width, initial-scale=1" />
88
<link rel="icon" type="image/x-icon" href="favicon.ico" />

styles/styles.css

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -55,3 +55,9 @@
5555
--input: 240 3.7% 15.9%;
5656
--ring: 240 4.9% 83.9%;
5757
}
58+
59+
60+
html,
61+
body {
62+
height: 100%;
63+
}

0 commit comments

Comments
 (0)