Set Period Ending alert to wrap and removed unnecessary class and <br> tag
This commit is contained in:
parent
505348ea59
commit
1e79edf0ed
@ -370,12 +370,23 @@
|
||||
}
|
||||
|
||||
.to-performance-period {
|
||||
&.to-expiring-soon {
|
||||
display: flex;
|
||||
flex-wrap: wrap;
|
||||
|
||||
.to-end-date {
|
||||
margin-right: 1.2rem;
|
||||
}
|
||||
|
||||
&.to-expiring-soon {
|
||||
.to-expiration-alert {
|
||||
font-weight: $font-bold;
|
||||
font-size: 1.5rem;
|
||||
margin-left: $gap;
|
||||
word-break: normal;
|
||||
white-space: normal;
|
||||
|
||||
.icon {
|
||||
margin-left: 0;
|
||||
}
|
||||
}
|
||||
|
||||
&.funded .to-expiration-alert {
|
||||
|
@ -45,7 +45,7 @@
|
||||
<td>
|
||||
<span class='label label--{{ label }}'>!{ taskOrder.display_status }</span>
|
||||
</td>
|
||||
<td class='table-cell--grow'>
|
||||
<td>
|
||||
<span :class="{ 'to-performance-period': true, 'to-expiring-soon': (taskOrder.days_to_expiration > 0 && taskOrder.days_to_expiration <= days_to_exp_alert_limit), 'funded': funded && taskOrder.display_status === 'Active', 'unfunded': !funded && taskOrder.display_status === 'Active' }">
|
||||
<local-datetime
|
||||
v-bind:timestamp="taskOrder.start_date"
|
||||
@ -66,7 +66,7 @@
|
||||
<span
|
||||
v-if="taskOrder.days_to_expiration > 0 && taskOrder.days_to_expiration <= days_to_exp_alert_limit && !funded"
|
||||
class="to-expiration-alert">
|
||||
{{ Icon('alert') }} Period ends in !{ taskOrder.days_to_expiration } days, submit a new task order<br>
|
||||
{{ Icon('alert') }} Period ends in !{ taskOrder.days_to_expiration } days, submit a new task order
|
||||
</span>
|
||||
</span>
|
||||
</td>
|
||||
|
Loading…
x
Reference in New Issue
Block a user