File tree Expand file tree Collapse file tree 8 files changed +13
-6
lines changed
shared/assets/src/lib/styles Expand file tree Collapse file tree 8 files changed +13
-6
lines changed Original file line number Diff line number Diff line change 24
24
"prefix" : " al" ,
25
25
"style" : " kebab-case"
26
26
}
27
- ]
27
+ ],
28
+ "@angular-eslint/no-host-metadata-property" : " off" // @todo: remove when angular 18 fix
28
29
}
29
30
},
30
31
{
Original file line number Diff line number Diff line change 1
1
< al-header [language] ="'ENG' " />
2
- < main class =" bg-gray-50 " >
2
+ < main >
3
3
< div
4
- class ="mx-auto flex w-full max-w-screen-xl justify-between px-2 py-4 xl:px-0 "
4
+ class ="mx-auto flex h-full w-full max-w-screen-xl justify-between px-2 py-4 xl:px-0 "
5
5
>
6
6
< router-outlet > </ router-outlet >
7
7
</ div >
8
8
</ main >
9
- < al-footer />
9
+ < al-footer class =" mt-auto block " />
Original file line number Diff line number Diff line change @@ -10,5 +10,8 @@ import { HeaderComponent } from '../header/header.component';
10
10
templateUrl : './layout.component.html' ,
11
11
styleUrls : [ './layout.component.scss' ] ,
12
12
changeDetection : ChangeDetectionStrategy . OnPush ,
13
+ host : {
14
+ class : 'min-h-screen grid grid-rows-[auto_1fr_auto]' ,
15
+ } ,
13
16
} )
14
17
export class LayoutComponent { }
Original file line number Diff line number Diff line change 1
- export * from './lib/blog-shared-ui- breadcrumb/blog-shared-ui- breadcrumb.component' ;
1
+ export * from './lib/breadcrumb/breadcrumb.component' ;
Original file line number Diff line number Diff line change 16
16
< li >
17
17
< button
18
18
al-button
19
- class ="flex min-w-10 justify-center !px-1 !py-3 leading-none "
19
+ class ="min-w-10 flex justify-center !px-1 !py-3 leading-none "
20
20
[variant] ="page.isActive ? 'Primary' : 'Outline' "
21
21
(click) ="setPage(page.index) "
22
22
>
Original file line number Diff line number Diff line change 7
7
/* You can add global styles to this file, and also import other style files */
8
8
body {
9
9
font-family : ' Inter' , sans-serif ;
10
+ @apply bg-al-gray-600 text-white ;
10
11
}
11
12
12
13
html {
Original file line number Diff line number Diff line change 32
32
"@ng-icons/tabler-icons" : " ^25.6.0" ,
33
33
"@ngrx/signals" : " ^17.0.1" ,
34
34
"@nx/angular" : " 18.2.4" ,
35
+ "@tailwindcss/container-queries" : " ^0.1.1" ,
35
36
"cheerio" : " 1.0.0-rc.12" ,
36
37
"class-variance-authority" : " ^0.7.0" ,
37
38
"clsx" : " ^2.1.1" ,
Original file line number Diff line number Diff line change @@ -27,4 +27,5 @@ module.exports = {
27
27
} ,
28
28
} ,
29
29
} ,
30
+ plugins : [ require ( '@tailwindcss/container-queries' ) ] ,
30
31
} ;
You can’t perform that action at this time.
0 commit comments