mirror of
https://github.com/cpvalente/ontime.git
synced 2026-08-08 17:03:53 +00:00
9fc154955a
* feat/62-logger request log data in app * feat/62-logger refact osc integration * feat/62-logger feedback on osc * feat/62-logger refact broadcast on triggers * feat/62-logger log triggers * feat/62-logger add link to studio * feat/62-logger replace toasts with logger context * feat/62-logger style improvements * feat/62-logger refactor code duplications * feat/62-logger cleanup and version bump
35 lines
505 B
SCSS
35 lines
505 B
SCSS
.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: 100%;
|
|
}
|
|
|
|
.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;
|
|
}
|