Better icon for scheduled departures
This commit is contained in:
parent
d07936d314
commit
78263302c8
@ -5,7 +5,10 @@
|
||||
</div>
|
||||
|
||||
<div class="departure__time">
|
||||
<fa :icon="['far', 'clock']" v-if="!departure.estimated" title="Czas rozkładowy, nieuwzględniający aktualnej sytuacji komunikacyjnej."/>
|
||||
<fa-layers v-if="!departure.estimated" class="mr-1" title="Czas rozkładowy, nieuwzględniający aktualnej sytuacji komunikacyjnej.">
|
||||
<fa :icon="['far', 'clock']"/>
|
||||
<fa :icon="['fas', 'exclamation-triangle']" transform="shrink-5 down-4 right-6"/>
|
||||
</fa-layers>
|
||||
<span :class="[ 'departure__time', 'departure__time--delayed']" v-if="timeDiffers">
|
||||
{{ departure.scheduled.format('HH:mm') }}
|
||||
</span>
|
||||
@ -13,6 +16,7 @@
|
||||
v-if="departure.delay < 0 || departure.delay > 30">
|
||||
{{ departure.delay|signed }}s
|
||||
</span>
|
||||
|
||||
<span class="departure__time">{{ time.format('HH:mm') }}</span>
|
||||
</div>
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user