We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0a7a254 commit 2fedf2fCopy full SHA for 2fedf2f
index.html
@@ -154,7 +154,7 @@
154
155
.address-box {
156
position: relative;
157
- width: 460px; /* Reduced length as requested */
+ width: 800px; /* Made the URL address bar longer */
158
margin: 0 auto;
159
}
160
@@ -268,10 +268,8 @@
268
if (val.startsWith('https://')) {
269
return `/active/embed.html?url=${val}`;
270
} else if (val.includes('.') && !val.includes(' ')) {
271
- // If it's a domain, add https:// and wrap in embed
272
return `/active/embed.html?url=https://${val}`;
273
} else {
274
- // If it's a query, use Google search logic
275
return `/active/embed.html?url=https://www.google.com/search?q=${encodeURIComponent(val)}`;
276
277
0 commit comments