mirror of
https://github.com/Aider-AI/aider.git
synced 2025-05-31 01:35:00 +00:00
style: Keep buttons side-by-side on narrow screens with responsive CSS
This commit is contained in:
parent
d2cfd541ed
commit
16304beeab
1 changed files with 17 additions and 1 deletions
|
@ -511,9 +511,16 @@ footer {
|
|||
}
|
||||
|
||||
.buttons {
|
||||
flex-direction: column;
|
||||
flex-direction: row;
|
||||
flex-wrap: wrap;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
gap: 10px;
|
||||
}
|
||||
|
||||
.btn {
|
||||
min-width: 120px;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.stats-container {
|
||||
|
@ -585,6 +592,15 @@ footer {
|
|||
font-size: 0.9rem;
|
||||
}
|
||||
|
||||
.buttons {
|
||||
gap: 8px;
|
||||
}
|
||||
|
||||
.btn {
|
||||
min-width: 100px;
|
||||
padding: 8px 12px;
|
||||
}
|
||||
|
||||
nav {
|
||||
padding: 8px 0;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue