Fixed date fallback in scene tile.
This commit is contained in:
@@ -118,10 +118,9 @@
|
||||
:datetime="scene.effectiveDate.toISOString()"
|
||||
class="ellipsis compact-show"
|
||||
>{{ formatDate(scene.effectiveDate, {
|
||||
day: 'MMM d, y',
|
||||
month: 'MMM y',
|
||||
year: 'y',
|
||||
}[scene.datePrecision]) }}</time>
|
||||
}[scene.datePrecision] || 'MMM d, y') }}</time>
|
||||
</Link>
|
||||
</div>
|
||||
|
||||
@@ -812,6 +811,7 @@ function copySummary() {
|
||||
|
||||
@media(--small-10) {
|
||||
.banner {
|
||||
flex-direction: column;
|
||||
justify-content: center;
|
||||
border-radius: 0;
|
||||
}
|
||||
@@ -835,7 +835,15 @@ function copySummary() {
|
||||
}
|
||||
|
||||
.album {
|
||||
display: none;
|
||||
display: flex;
|
||||
flex-wrap: nowrap;
|
||||
overflow-x: auto;
|
||||
height: 8rem;
|
||||
}
|
||||
|
||||
.photo-container {
|
||||
flex-grow: 0;
|
||||
flex-shrink: 0;
|
||||
}
|
||||
|
||||
.header {
|
||||
|
||||
Reference in New Issue
Block a user