Skip to content

Commit e66dc54

Browse files
authored
docs: proper import for tsconfig
* docs: proper import for tsconfig * docs: remove a base style from styles.css
1 parent 50cd9b4 commit e66dc54

File tree

4 files changed

+4
-10
lines changed

4 files changed

+4
-10
lines changed

projects/docs/src/app/blueprint/api-info/api-info.component.html

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<p class="mb-6">
55
Read the
66
<a
7-
class="inline-flex items-center gap-1 !underline"
7+
class="inline-flex items-center gap-1 underline"
88
[href]="api.articleLink"
99
target="_blank"
1010
>Article
@@ -43,7 +43,7 @@ <h5 class="my-0 pb-2 text-lg font-medium">API</h5>
4343
@if (api.stylesInGlobal) {
4444
<p class="mb-6">
4545
The styles can be found in the
46-
<a [routerLink]="['/doc/theming']" class="!underline">ngverse.css</a>
46+
<a [routerLink]="['/doc/theming']" class="underline">ngverse.css</a>
4747
file.
4848
</p>
4949
}

projects/docs/src/app/blueprint/prerequisites/prerequisites.component.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ <h4 class="m-0 text-xl font-normal">Prerequisites</h4>
44
<p class="mt-2">
55
{{ name() }} element uses
66
@for (item of prepsAuto; track $index) {
7-
<a class="!underline" [routerLink]="['../', item.name]">{{
7+
<a class="underline" [routerLink]="['../', item.name]">{{
88
item.label
99
}}</a>
1010
@if ($index < prepsAuto.length - 1) {

projects/docs/src/app/features/installation-page/installation-page.component.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ export class InstallationPageComponent {
2727
...
2828
"compilerOptions": {
2929
"paths": {
30-
"@/ui/*": ["./src/app/ui"]
30+
"@/ui/*": ["./src/app/ui/*"]
3131
}
3232
....
3333
`;

projects/docs/src/styles.css

-6
Original file line numberDiff line numberDiff line change
@@ -8,12 +8,6 @@
88
@import '../../ngverse/src/lib/ngverse';
99
@import '@angular/cdk/overlay-prebuilt.css';
1010

11-
a {
12-
color: inherit;
13-
-webkit-text-decoration: inherit;
14-
text-decoration: inherit;
15-
}
16-
1711
html,
1812
body {
1913
margin: 0;

0 commit comments

Comments
 (0)