mirror of
https://github.com/khoaliber/khoj.git
synced 2026-03-02 13:18:18 +00:00
- Use icons/colors for setting the styling of agents - Update automations page to use the shadcn cards: https://github.com/shadcn-ui/ui
50 lines
814 B
CSS
50 lines
814 B
CSS
div.titleBar {
|
|
padding: 16px 0;
|
|
text-align: left;
|
|
}
|
|
|
|
.agentPersonality p {
|
|
white-space: inherit;
|
|
overflow: hidden;
|
|
height: 78px;
|
|
line-height: 1.5;
|
|
}
|
|
|
|
div.agentPersonality {
|
|
text-align: left;
|
|
grid-column: span 3;
|
|
overflow: hidden;
|
|
}
|
|
|
|
|
|
|
|
button.infoButton {
|
|
border: none;
|
|
background-color: transparent !important;
|
|
text-align: left;
|
|
font-family: inherit;
|
|
font-size: medium;
|
|
}
|
|
|
|
|
|
div.agentList {
|
|
display: grid;
|
|
gap: 20px;
|
|
padding: 20px;
|
|
margin-right: auto;
|
|
grid-auto-flow: row;
|
|
grid-template-columns: 1fr 1fr;
|
|
margin-left: auto;
|
|
}
|
|
|
|
|
|
@media only screen and (max-width: 700px) {
|
|
div.agentList {
|
|
width: 90%;
|
|
padding: 0;
|
|
margin-right: auto;
|
|
margin-left: auto;
|
|
grid-template-columns: 1fr;
|
|
}
|
|
}
|