Files
ontime/client/src/features/editors/list/List.module.css
T
2021-05-06 12:05:21 +02:00

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; */
}