interstellar_ai/app/styles/history.css

44 lines
759 B
CSS
Raw Normal View History

2024-09-18 11:17:34 +02:00
.history-background {
grid-column: 1/2;
grid-row: 1/2;
2024-09-30 10:46:03 +02:00
height: 45%;
2024-09-18 11:17:34 +02:00
overflow: hidden;
background-color: var(--history-background-color);
padding: 1em;
margin: 1em;
2024-09-18 16:29:58 +02:00
margin-right: 0;
2024-09-30 10:46:03 +02:00
border-radius: 1em;
2024-09-18 11:17:34 +02:00
}
.history {
height: 100%;
overflow-y: scroll;
padding-right: 10px;
}
.history ul {
list-style: none;
}
.history ul li {
padding: 10px 0;
border-bottom: 1px solid var(--text-color);
width: 100%;
}
.history ul li a {
display: block;
text-decoration: none;
2024-09-23 11:55:58 +02:00
color: var(--text-color); /* Use variable for link text color */
2024-09-18 11:17:34 +02:00
width: 100%;
padding: 5px;
}
.history ul li a:hover {
background-color: var(--input-button-hover-color);
}
2024-09-30 10:46:03 +02:00
.history-models{
height: 100%;
}