mirror of
https://github.com/Aider-AI/aider.git
synced 2025-05-30 17:24:59 +00:00
style: Add mobile-friendly CSS to hide command and edit columns
This commit is contained in:
parent
8cfbc9b827
commit
26b0c6e6da
1 changed files with 8 additions and 0 deletions
|
@ -88,6 +88,14 @@ The model also has to successfully apply all its changes to the source file with
|
|||
td:nth-child(3), td:nth-child(4) {
|
||||
font-size: 12px;
|
||||
}
|
||||
|
||||
/* Hide command and edit format columns on mobile */
|
||||
@media screen and (max-width: 767px) {
|
||||
th:nth-child(4), td:nth-child(4), /* Command column */
|
||||
th:nth-child(5), td:nth-child(5) { /* Edit format column */
|
||||
display: none;
|
||||
}
|
||||
}
|
||||
</style>
|
||||
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue