Added Notifications

This commit is contained in:
2026-06-02 15:20:22 +10:00
parent 61ff0c5002
commit 09841ba1f7
3 changed files with 6 additions and 2 deletions
@@ -185,7 +185,7 @@ watch(
font-family: 'Barlow', sans-serif !important; font-family: 'Barlow', sans-serif !important;
} }
@media (max-width: 1180px) { @media (max-width: 1200px) {
:deep(.v-data-table__th) { :deep(.v-data-table__th) {
padding: 0.75rem 4px !important; padding: 0.75rem 4px !important;
} }
@@ -177,7 +177,7 @@ const page = usePage<SharedProps>()
transition: background 0.3s ease; transition: background 0.3s ease;
} }
@media (max-width: 1180px) { @media (max-width: 1200px) {
:deep(.v-data-table__td) { :deep(.v-data-table__td) {
padding: 0 4px !important; padding: 0 4px !important;
font-size: 0.8rem; font-size: 0.8rem;
@@ -1,5 +1,6 @@
<script setup lang="ts"> <script setup lang="ts">
import {Flight} from "@/Types/types"; import {Flight} from "@/Types/types";
import Mono from "@/Components/FlightsGoneBy/Mono.vue";
defineProps<{ defineProps<{
flight: Flight flight: Flight
@@ -14,6 +15,9 @@ defineProps<{
<style scoped> <style scoped>
.livery{ .livery{
display:flex;
flex-direction: column;
justify-content: flex-end;
width: 100%; width: 100%;
aspect-ratio: 16/9; aspect-ratio: 16/9;
background-size: cover; background-size: cover;