runeforge 0.0.4 → 0.0.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -84,4 +84,19 @@
|
|
|
84
84
|
margin-inline: 0.5rem 0.75rem;
|
|
85
85
|
rotate: 45deg;
|
|
86
86
|
}
|
|
87
|
+
|
|
88
|
+
/*
|
|
89
|
+
* Tailwind preflight sets svg { display: block }, which stacks icons above
|
|
90
|
+
* labels when the <a>/<span> inline-flex class isn't generated from node_modules.
|
|
91
|
+
*/
|
|
92
|
+
:global(.breadcrumbs > ul > li > a),
|
|
93
|
+
:global(.breadcrumbs > ul > li > span),
|
|
94
|
+
:global(.breadcrumbs > ol > li > a),
|
|
95
|
+
:global(.breadcrumbs > ol > li > span),
|
|
96
|
+
:global(.breadcrumbs > menu > li > a),
|
|
97
|
+
:global(.breadcrumbs > menu > li > span) {
|
|
98
|
+
display: inline-flex;
|
|
99
|
+
align-items: center;
|
|
100
|
+
gap: 0.5rem;
|
|
101
|
+
}
|
|
87
102
|
</style>
|
|
@@ -76,7 +76,8 @@
|
|
|
76
76
|
{:else if p === page}
|
|
77
77
|
<input
|
|
78
78
|
type="number"
|
|
79
|
-
class="join-item btn btn-sm
|
|
79
|
+
class="join-item btn btn-sm w-12 text-center appearance-none"
|
|
80
|
+
style="background-color: var(--color-base-100);"
|
|
80
81
|
min="1"
|
|
81
82
|
max={totalPages}
|
|
82
83
|
value={page}
|