mirror of
https://github.com/cpvalente/ontime.git
synced 2026-08-11 02:13:48 +00:00
32 lines
511 B
CSS
32 lines
511 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: 90%;
|
|
min-height: 2px;
|
|
background-color: #ff7597;
|
|
border-radius: 2px;
|
|
margin: 0 auto;
|
|
/* transition: 1s;
|
|
transition-property: all; */
|
|
}
|