search styles, chunk padding
This commit is contained in:
parent
1f506c18f1
commit
84a4236466
2 changed files with 4 additions and 6 deletions
|
|
@ -74,7 +74,7 @@ export const KnowledgeSearchInput = () => {
|
||||||
{queryOverride && (
|
{queryOverride && (
|
||||||
<Button
|
<Button
|
||||||
variant="ghost"
|
variant="ghost"
|
||||||
className="h-full !px-1.5 !py-0"
|
className="h-full rounded-sm !px-1.5 !py-0"
|
||||||
type="button"
|
type="button"
|
||||||
onClick={() => {
|
onClick={() => {
|
||||||
setSearchQueryInput("");
|
setSearchQueryInput("");
|
||||||
|
|
@ -87,7 +87,7 @@ export const KnowledgeSearchInput = () => {
|
||||||
<Button
|
<Button
|
||||||
variant="ghost"
|
variant="ghost"
|
||||||
className={cn(
|
className={cn(
|
||||||
"h-full !px-1.5 !py-0 hidden group-focus-within/input:block",
|
"h-full rounded !px-1.5 !py-0 hidden group-focus-within/input:block",
|
||||||
searchQueryInput && "block"
|
searchQueryInput && "block"
|
||||||
)}
|
)}
|
||||||
type="submit"
|
type="submit"
|
||||||
|
|
|
||||||
|
|
@ -241,9 +241,7 @@ function ChunksPageContent() {
|
||||||
{chunks.length > 0 && (
|
{chunks.length > 0 && (
|
||||||
<div className="min-w-[200px]">
|
<div className="min-w-[200px]">
|
||||||
<div className="mb-8">
|
<div className="mb-8">
|
||||||
<h2 className="text-xl font-semibold mt-3 mb-4">
|
<h2 className="text-xl font-semibold mb-4">Technical details</h2>
|
||||||
Technical details
|
|
||||||
</h2>
|
|
||||||
<dl>
|
<dl>
|
||||||
<div className="sm:grid sm:grid-cols-3 sm:gap-4 sm:px-0 mb-2.5">
|
<div className="sm:grid sm:grid-cols-3 sm:gap-4 sm:px-0 mb-2.5">
|
||||||
<dt className="text-sm/6 text-muted-foreground">
|
<dt className="text-sm/6 text-muted-foreground">
|
||||||
|
|
@ -274,7 +272,7 @@ function ChunksPageContent() {
|
||||||
</div> */}
|
</div> */}
|
||||||
</dl>
|
</dl>
|
||||||
</div>
|
</div>
|
||||||
<div className="mb-8">
|
<div className="mb-4">
|
||||||
<h2 className="text-xl font-semibold mt-2 mb-3">
|
<h2 className="text-xl font-semibold mt-2 mb-3">
|
||||||
Original document
|
Original document
|
||||||
</h2>
|
</h2>
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue