fix windows css
This commit is contained in:
parent
80e733e0ca
commit
26851aaead
2 changed files with 4 additions and 3 deletions
|
@ -280,6 +280,7 @@ header a:hover {
|
||||||
color: white;
|
color: white;
|
||||||
border: none;
|
border: none;
|
||||||
padding: 0;
|
padding: 0;
|
||||||
|
margin: 5px;
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
transition: transform 0.2s ease-in-out;
|
transition: transform 0.2s ease-in-out;
|
||||||
}
|
}
|
||||||
|
@ -326,7 +327,8 @@ header a:hover {
|
||||||
}
|
}
|
||||||
|
|
||||||
.input button {
|
.input button {
|
||||||
padding: 12px 20px;
|
padding:1em;
|
||||||
|
margin: 5px;
|
||||||
background-color: var(--input-button-color);
|
background-color: var(--input-button-color);
|
||||||
color: white;
|
color: white;
|
||||||
border: none;
|
border: none;
|
||||||
|
|
|
@ -40,12 +40,11 @@ def index():
|
||||||
|
|
||||||
system += "The chat log is now finished."
|
system += "The chat log is now finished."
|
||||||
|
|
||||||
ai_response = "AI: " + api.send_message(user_message, 5, system)
|
ai_response = "AI: " + api.send_message(user_message, 4, system)
|
||||||
messages.append(ai_response)
|
messages.append(ai_response)
|
||||||
|
|
||||||
return render_template('index.html', messages=messages)
|
return render_template('index.html', messages=messages)
|
||||||
|
|
||||||
|
|
||||||
@APP.route('/faq')
|
@APP.route('/faq')
|
||||||
def faq():
|
def faq():
|
||||||
return render_template('faq.html')
|
return render_template('faq.html')
|
||||||
|
|
Reference in a new issue