mirror of
https://github.com/cpvalente/ontime.git
synced 2026-08-03 06:28:01 +00:00
9b5d536378
* refactor: cleanup project entry point * refactor: remove unused * refactor: folder restructure
29 lines
423 B
SCSS
29 lines
423 B
SCSS
@use '../../../theme/main' as *;
|
|
|
|
.block {
|
|
overflow: hidden;
|
|
display: flex;
|
|
align-items: center;
|
|
width: 100%;
|
|
|
|
.title {
|
|
padding-left: 1em;
|
|
font-size: 0.75em;
|
|
color: $label-gray;
|
|
display: inline-block;
|
|
min-width: 6em;
|
|
}
|
|
|
|
.preview {
|
|
color: $bg-gray-500;
|
|
}
|
|
|
|
.inline {
|
|
display: inline;
|
|
white-space: nowrap;
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
flex: 1;
|
|
}
|
|
}
|