mirror of
https://github.com/cpvalente/ontime.git
synced 2026-08-10 09:53:48 +00:00
26 lines
296 B
CSS
26 lines
296 B
CSS
.previewContainer {
|
|
display: flex;
|
|
flex-direction: row;
|
|
flex-wrap: wrap;
|
|
justify-content: center;
|
|
align-content: center;
|
|
gap: 1em;
|
|
}
|
|
|
|
.previewItem {
|
|
width: 45%;
|
|
}
|
|
|
|
.label {
|
|
padding: 0.1em 4em;
|
|
}
|
|
|
|
a::after {
|
|
content: ' \2197';
|
|
color: #ff7597;
|
|
}
|
|
|
|
a:hover {
|
|
color: #ff7597;
|
|
}
|