Skip to content

Commit

Permalink
Fixed things
Browse files Browse the repository at this point in the history
  • Loading branch information
BossOfGames committed Apr 28, 2020
1 parent a0c1aec commit ed21aee
Show file tree
Hide file tree
Showing 2 changed files with 40 additions and 1 deletion.
29 changes: 29 additions & 0 deletions Resources/assets/js/components/SimConnectionStatus.vue
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
<template>
<div>
<div class="panel-item" style="display: inline-flex; width: 100%; background: #323232">
<div :class="flightRules" style="border-radius: 50%; height: 25px; width: 25px; margin: auto; border: 2px solid white;">
</div>
<div style="margin-left: 1rem; flex: 1">
<div style="font-size: 24px; line-height: 1">{{ wx.type }} {{ wx.start_time.repr }}</div>
</div>
</div>
</div>
</template>

<script>
export default {
name: "SimConnectionStatus"
}
</script>

<style scoped>
.green {
background: rgba(39, 193, 84, 1);
}
.yellow {
background: #ded308;
}
.red {
background: #da1319;
}
</style>
12 changes: 11 additions & 1 deletion Resources/assets/js/views/Flights/components/FlightBriefing.vue
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,20 @@
<v-layout row wrap fill-height>
<v-flex md9 xs12>
<div class="display-3">{{flight.callsign}}</div>
<v-card>

</v-card>
</v-flex>
<v-flex md3 xs12>
<v-card>
<v-card-title>Actions</v-card-title>
<v-btn>Start Flight</v-btn>
<v-btn>Cancel Flight</v-btn>
</v-card>
</v-flex>
</v-layout>
</v-container>
</div>;;;;
</div>
</template>

<script>
Expand Down

0 comments on commit ed21aee

Please sign in to comment.