From ee3eca7d8f3a1e11479ced9566aa5669c347e55c Mon Sep 17 00:00:00 2001 From: Romulus21 Date: Sun, 3 May 2020 11:17:46 +0200 Subject: [PATCH] refact meteo with tailwindcss --- resources/js/views/Meteo/OpenWeatherCard.vue | 32 ++++++++++++-------- resources/sass/app.scss | 1 + 2 files changed, 20 insertions(+), 13 deletions(-) diff --git a/resources/js/views/Meteo/OpenWeatherCard.vue b/resources/js/views/Meteo/OpenWeatherCard.vue index 1d61fd6..5a2912d 100644 --- a/resources/js/views/Meteo/OpenWeatherCard.vue +++ b/resources/js/views/Meteo/OpenWeatherCard.vue @@ -2,21 +2,27 @@

Météo

-
-

{{ meteo.city.name }}

-
-
-
{{ dateFormat(meteo.list[0].dt_txt) }}
-
{{ meteo.list[0].main.temp }} °C
-
{{ meteo.list[0].main.humidity }} %
-
{{ meteo.list[0].main.pressure }} hPa
-
-
- -
{{ meteo.list[0].weather[0].description }}
+
+ +
+
+
+

{{ meteo.city.name }}

+
+
+
{{ dateFormat(meteo.list[0].dt_txt) }}
+
{{ meteo.list[0].main.temp }} °C
+
{{ meteo.list[0].main.humidity }} %
+
{{ meteo.list[0].main.pressure }} hPa
+
+
+ +
{{ meteo.list[0].weather[0].description }}
+
+
+
-
diff --git a/resources/sass/app.scss b/resources/sass/app.scss index 0f0ded1..8e1625d 100644 --- a/resources/sass/app.scss +++ b/resources/sass/app.scss @@ -7,6 +7,7 @@ @import "components/btn"; @import "components/nav"; @import "components/transitions"; +@import "components/owfont-regular"; @import "pages/memos";