mirror of
https://github.com/Aider-AI/aider.git
synced 2025-05-29 16:54:59 +00:00
aider: Moved the triangle to the top of the speech bubble and changed it to an upwards pointing triangle.
# Aider chat conversation: USER: the div renders as a "speech bubble" with a little downward pointing triangle as the "tail" of the speech bubble. Move that to the top of the speech bubble, so it's an upwards pointing triangle. ASSISTANT: To move the triangle to the top of the speech bubble, we need to modify the CSS in the `docs/voice.md` file. Here are the steps: 1. Change the `top: 100%;` to `top: 0;` to move the triangle to the top. 2. Change `border-top: 10px solid #f0f0f0;` to `border-bottom: 10px solid #f0f0f0;` to flip the triangle. Here is the *edit block* for these changes: <source>markdown docs/voice.md <<<<<<< HEAD <span style="position: absolute; top: 100%; left: 50%; transform: translate(-50%, 0); width: 0; height: 0; border-left: 10px solid transparent; border-right: 10px solid transparent; border-top: 10px solid #f0f0f0;"></span> ======= <span style="position: absolute; top: 0; left: 50%; transform: translate(-50%, -100%); width: 0; height: 0; border-left: 10px solid transparent; border-right: 10px solid transparent; border-bottom: 10px solid #f0f0f0;"></span> >>>>>>> updated </source>
This commit is contained in:
parent
8bcbce2532
commit
423e52d748
1 changed files with 1 additions and 1 deletions
|
@ -9,7 +9,7 @@
|
||||||
#### /voice
|
#### /voice
|
||||||
|
|
||||||
<div style="display: inline-block; position: relative; width: 200px; background-color: #f0f0f0; border-radius: 10px; padding: 10px; color: #333; font-family: 'Comic Sans MS', cursive, sans-serif;">
|
<div style="display: inline-block; position: relative; width: 200px; background-color: #f0f0f0; border-radius: 10px; padding: 10px; color: #333; font-family: 'Comic Sans MS', cursive, sans-serif;">
|
||||||
<span style="position: absolute; top: 100%; left: 50%; transform: translate(-50%, 0); width: 0; height: 0; border-left: 10px solid transparent; border-right: 10px solid transparent; border-top: 10px solid #f0f0f0;"></span>
|
<span style="position: absolute; top: 0; left: 50%; transform: translate(-50%, -100%); width: 0; height: 0; border-left: 10px solid transparent; border-right: 10px solid transparent; border-bottom: 10px solid #f0f0f0;"></span>
|
||||||
“add a factorial endpoit that uses math factorial”
|
“add a factorial endpoit that uses math factorial”
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue