Skip to content

Commit 9a302f7

Browse files
committed
refactor: remove prose styles and related components for cleaner codebase
1 parent e3b9136 commit 9a302f7

File tree

8 files changed

+26
-266
lines changed

8 files changed

+26
-266
lines changed
0 Bytes
Binary file not shown.

docs-v3/assets/css/main.css

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,6 @@
55
@import "tailwindcss";
66
@import "@nuxt/ui";
77

8-
/* Import prose styles for content rendering */
9-
@import "./prose.css";
10-
118

129
/* Base styles */
1310
html {

docs-v3/assets/css/prose.css

Lines changed: 0 additions & 111 deletions
This file was deleted.

docs-v3/components/content/ProsePre.vue

Lines changed: 0 additions & 130 deletions
This file was deleted.

docs-v3/content/docs/auth/authentication.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,8 +51,7 @@ php artisan migrate
5151

5252
Define your authenticatable class in the config file:
5353

54-
```php
55-
// config/restify.php
54+
```php [config/restify.php]
5655

5756
'auth' => [
5857
...

docs-v3/content/docs/auth/authorization.md

Lines changed: 11 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -433,30 +433,21 @@ Determine if the user can update a specific model.
433433

434434
The `update` method corresponds to the following routes:
435435

436-
<code-group>
436+
::code-group
437437

438-
<code-block label="Full Update" active>
439-
440-
```http request
441-
PUT: api/restify/posts/{id}
442-
```
443-
</code-block>
444-
445-
<code-block label="Partial Update">
446-
447-
```http request
448-
PATCH: api/restify/posts/{id}
449-
```
450-
</code-block>
438+
```http [Full Update]
439+
PUT: api/restify/posts/{id}
440+
```
451441

452-
<code-block label="File uploads">
442+
```http [Partial Update]
443+
PATCH: api/restify/posts/{id}
444+
```
453445

454-
```http request
455-
POST: api/restify/posts/{id}
456-
```
457-
</code-block>
446+
```http [File uploads]
447+
POST: api/restify/posts/{id}
448+
```
458449

459-
</code-group>
450+
::
460451

461452
Definition:
462453

docs-v3/package-lock.json

Lines changed: 12 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

docs-v3/package.json

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,9 @@
1313
"postinstall": "nuxt prepare"
1414
},
1515
"dependencies": {
16+
"@iconify/json": "^2.2.408",
1617
"@nuxt/content": "^3.8.2",
18+
"@nuxt/icon": "^2.1.0",
1719
"@nuxt/ui": "^4.1.0",
1820
"@vueuse/nuxt": "^12.0.0",
1921
"better-sqlite3": "^12.4.1",

0 commit comments

Comments
 (0)