matt HOFFNER commited on
Commit
db0f0fe
β€’
1 Parent(s): aab77fe

style improvements

Browse files
Files changed (2) hide show
  1. app/globals.css +6 -2
  2. app/page.tsx +1 -1
app/globals.css CHANGED
@@ -96,8 +96,8 @@ body {
96
  }
97
 
98
  a {
99
- color: inherit;
100
- text-decoration: none;
101
  }
102
 
103
  @media (prefers-color-scheme: dark) {
@@ -105,3 +105,7 @@ a {
105
  color-scheme: dark;
106
  }
107
  }
 
 
 
 
 
96
  }
97
 
98
  a {
99
+ text-decoration: underline;
100
+ color: blue;
101
  }
102
 
103
  @media (prefers-color-scheme: dark) {
 
105
  color-scheme: dark;
106
  }
107
  }
108
+
109
+ ul {
110
+ padding: 5px;
111
+ }
app/page.tsx CHANGED
@@ -169,7 +169,7 @@ const Page: React.FC = () => {
169
  type="text"
170
  value={input}
171
  onChange={(e) => setInput(e.target.value)}
172
- placeholder="Enter URL and Prompt"
173
  className={styles.input}
174
  />
175
  <button type="submit" className={styles.button} disabled={isLoading}>
 
169
  type="text"
170
  value={input}
171
  onChange={(e) => setInput(e.target.value)}
172
+ placeholder="Chat with Internet"
173
  className={styles.input}
174
  />
175
  <button type="submit" className={styles.button} disabled={isLoading}>