mirror of
https://github.com/louislam/uptime-kuma.git
synced 2024-11-10 07:34:07 -08:00
Use bootstrap integraded class instead of new ones
This commit is contained in:
parent
dbd3f48f68
commit
ca38cc91e9
|
@ -52,8 +52,8 @@
|
|||
<tr v-for="(beat, index) in displayedRecords" :key="index" :class="{ 'shadow-box': $root.windowWidth <= 550}">
|
||||
<td>{{ beat.name }}</td>
|
||||
<td><Status :status="beat.status" /></td>
|
||||
<td><Datetime :value="beat.time" /></td>
|
||||
<td class="no-border">{{ beat.msg }}</td>
|
||||
<td :class="{ 'border-0':! beat.msg}"><Datetime :value="beat.time" /></td>
|
||||
<td class="border-0">{{ beat.msg }}</td>
|
||||
</tr>
|
||||
|
||||
<tr v-if="importantHeartBeatList.length === 0">
|
||||
|
@ -193,10 +193,6 @@ table {
|
|||
}
|
||||
|
||||
@media (max-width: 550px) {
|
||||
.no-border {
|
||||
border: 0px;
|
||||
}
|
||||
|
||||
tr.shadow-box, .shadow-box:last-child {
|
||||
padding: 10px;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue