From 980137952df5f5e8573b33048db4b5f9ca1008a7 Mon Sep 17 00:00:00 2001 From: Spencer Flagg Date: Sun, 3 Oct 2021 18:05:01 +0200 Subject: [PATCH] fixed metatag image url --- nuxt.config.js | 6 +++--- pages/flights.vue | 30 ++++++++++++++++++++++++++++++ 2 files changed, 33 insertions(+), 3 deletions(-) diff --git a/nuxt.config.js b/nuxt.config.js index efeb911..d707d11 100644 --- a/nuxt.config.js +++ b/nuxt.config.js @@ -9,16 +9,16 @@ export default { { name: 'format-detection', content: 'telephone=no' }, { itemprop: 'name', content: 'Small Planes, Big Experiences' }, { itemprop: 'description', content: 'FlyLocal is the best way to find local airlines that fly throughout the great state of Alaska. Explore the \'Last Frontier\' with FlyLocal.' }, - { itemprop: 'image', content: '/screenshot.png' }, + { itemprop: 'image', content: 'https://flylocal.us/screenshot.png' }, { property: 'og:url', content: 'https://iflylocal.com/' }, { property: 'og:type', content: 'website' }, { property: 'og:title', content: 'Small Planes, Big Experiences' }, { property: 'og:description', content: 'FlyLocal is the best way to find local airlines that fly throughout the great state of Alaska. Explore the \'Last Frontier\' with FlyLocal.' }, - { property: 'og:image', content: '/screenshot.png' }, + { property: 'og:image', content: 'https://flylocal.us/screenshot.png' }, { name: 'twitter:card', content: 'summary_large_image' }, { name: 'twitter:title', content: 'Small Planes, Big Experiences' }, { name: 'twitter:description', content: 'FlyLocal is the best way to find local airlines that fly throughout the great state of Alaska. Explore the \'Last Frontier\' with FlyLocal.' }, - { name: 'twitter:image', content: '/screenshot.png' } + { name: 'twitter:image', content: 'https://flylocal.us/screenshot.png' } ], link: [ { rel: 'icon', type: 'image/x-icon', href: '/favicon.ico' } diff --git a/pages/flights.vue b/pages/flights.vue index 40bd282..9483829 100644 --- a/pages/flights.vue +++ b/pages/flights.vue @@ -578,6 +578,36 @@ span.badge--avail { font-weight: 300; } +.flyout .v-select { + font-size: 1.5rem; +} + +.flyout .vs__dropdown-menu { + display: flex; + flex-direction: row; + flex-wrap: wrap; +} + +.flyout .vs__dropdown-menu li { + border-radius: 999px; + transition: 0.3 all; +} + +.flyout .vs__dropdown-menu li:hover { + border-radius: 999px; + background-color: #007fff; +} + +.flyout .vs__dropdown-toggle { + background: #eee; + border-radius: 1.2rem 1.2rem 1.2rem 1.2rem; +} + +.flyout .vs--open .vs__dropdown-toggle { + background: #eee; + border-radius: 1.2rem 1.2rem 0 0; +} +