mirror of
https://github.com/cpvalente/ontime.git
synced 2026-08-11 10:23:54 +00:00
6ae0755696
- style tweaks - container follows cursor
35 lines
505 B
CSS
35 lines
505 B
CSS
.eventContainer {
|
|
margin-top: 1em;
|
|
display: flex;
|
|
flex-direction: column;
|
|
background-color: rgba(0, 0, 0, 0.05);
|
|
border: 1px solid rgba(0, 0, 0, 0.05);
|
|
border-radius: 4px;
|
|
padding: 8px;
|
|
overflow-y: scroll;
|
|
height: 73vh;
|
|
}
|
|
|
|
.list {
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
|
|
.empty {
|
|
opacity: 0.3;
|
|
align-self: center;
|
|
}
|
|
|
|
.cursor {
|
|
width: 100%;
|
|
background: linear-gradient(
|
|
180deg,
|
|
#ff7597 2%,
|
|
#0001 3%,
|
|
#0001 97%,
|
|
#ff7597 98%
|
|
);
|
|
|
|
border-radius: 14px;
|
|
}
|