Skip to content

Commit

Permalink
ui(index): min height for example pgn textarea
Browse files Browse the repository at this point in the history
  • Loading branch information
theborakompanioni committed Mar 15, 2024
1 parent ae8f9cc commit b16633f
Show file tree
Hide file tree
Showing 7 changed files with 19 additions and 15 deletions.
8 changes: 4 additions & 4 deletions docs/asset-manifest.json
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
{
"files": {
"main.css": "./static/css/main.c3e0dbbf.css",
"main.js": "./static/js/main.cfb6b1ef.js",
"main.css": "./static/css/main.5a00746f.css",
"main.js": "./static/js/main.d68e2617.js",
"index.html": "./index.html"
},
"entrypoints": [
"static/css/main.c3e0dbbf.css",
"static/js/main.cfb6b1ef.js"
"static/css/main.5a00746f.css",
"static/js/main.d68e2617.js"
]
}
2 changes: 1 addition & 1 deletion docs/index.html
Original file line number Diff line number Diff line change
@@ -1 +1 @@
<!doctype html><html lang="en"><head><meta charset="utf-8"/><link rel="icon" href="./favicon.ico"/><meta name="viewport" content="width=device-width,initial-scale=1"/><meta name="theme-color" content="#000000"/><meta name="description" content="Lightning Login Password Manager"/><meta name="referrer" content="no-referrer"><link rel="apple-touch-icon" href="./logo192.png"/><link rel="manifest" href="./manifest.json"/><script>window.APP={APP_NAME:"nip64",SETTINGS_STORE_KEY:"nip64-app-settings"}</script><title>nip64</title><script defer="defer" src="./static/js/main.cfb6b1ef.js"></script><link href="./static/css/main.c3e0dbbf.css" rel="stylesheet"></head><body><noscript>You need to enable JavaScript to run this app.</noscript><div id="root"></div></body></html>
<!doctype html><html lang="en"><head><meta charset="utf-8"/><link rel="icon" href="./favicon.ico"/><meta name="viewport" content="width=device-width,initial-scale=1"/><meta name="theme-color" content="#000000"/><meta name="description" content="Lightning Login Password Manager"/><meta name="referrer" content="no-referrer"><link rel="apple-touch-icon" href="./logo192.png"/><link rel="manifest" href="./manifest.json"/><script>window.APP={APP_NAME:"nip64",SETTINGS_STORE_KEY:"nip64-app-settings"}</script><title>nip64</title><script defer="defer" src="./static/js/main.d68e2617.js"></script><link href="./static/css/main.5a00746f.css" rel="stylesheet"></head><body><noscript>You need to enable JavaScript to run this app.</noscript><div id="root"></div></body></html>

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@
*/

/**
* @remix-run/router v1.14.1
* @remix-run/router v1.15.3
*
* Copyright (c) Remix Software Inc.
*
Expand All @@ -66,7 +66,7 @@
*/

/**
* React Router DOM v6.21.1
* React Router DOM v6.22.3
*
* Copyright (c) Remix Software Inc.
*
Expand All @@ -77,7 +77,7 @@
*/

/**
* React Router v6.21.1
* React Router v6.22.3
*
* Copyright (c) Remix Software Inc.
*
Expand Down
6 changes: 5 additions & 1 deletion src/pages/IndexPage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,11 @@ export function IndexPage() {
<code className="font-mono">`content`</code>
</h4>

<Textarea className="w-full h-full bg-base-200 font-mono" value={EXAMPLE_EVENT.content} readOnly></Textarea>
<Textarea
className="w-full h-full min-h-96 bg-base-200 font-mono"
value={EXAMPLE_EVENT.content}
readOnly
></Textarea>
</div>
</div>
</div>
Expand Down
4 changes: 2 additions & 2 deletions src/pages/SearchPage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -196,13 +196,13 @@ export default function SearchPage() {
{searchResult.kind === NIP64_KIND ? (
<>
<Badge variant="outline" color="success">
This is a NIP-64 Event
NIP-64
</Badge>
</>
) : (
<>
<Badge variant="outline" color="error">
This is&nbsp;<strong>not</strong>&nbsp;a NIP-64 Event
<strong>not</strong>&nbsp;NIP-64
</Badge>
</>
)}
Expand Down

0 comments on commit b16633f

Please sign in to comment.