From 5b0813e2a270d6beebc5765d742288eff900a34f Mon Sep 17 00:00:00 2001 From: RemiSaurel Date: Mon, 15 Aug 2022 23:11:40 +0200 Subject: [PATCH] UI + widgets --- src/App.vue | 16 +++++-- src/components/Pomodoro.vue | 93 +++++++++++++++++++++---------------- src/components/Stats.vue | 27 +++++++++++ 3 files changed, 92 insertions(+), 44 deletions(-) create mode 100644 src/components/Stats.vue diff --git a/src/App.vue b/src/App.vue index 6267600..d14ce1a 100644 --- a/src/App.vue +++ b/src/App.vue @@ -55,6 +55,17 @@ footer { width: 100%; } +#ytb-player { + background: #504746; + margin-top: 16px; + border-radius: 16px; + padding: 0 24px 12px 24px; +} + +#pomodoro { + width: 100%; +} + #container { display: flex; flex-direction: row; @@ -82,16 +93,15 @@ footer { @media (min-width: 330px) { #right-side { display: flex; - width: 50%; + width: 60%; flex-direction: column; margin-right: 32px; margin-left: 32px; } } - #todo-container { - width: 50%; + width: 30%; margin-right: 16px; max-width: 500px; } diff --git a/src/components/Pomodoro.vue b/src/components/Pomodoro.vue index db8e4ee..12cbb89 100644 --- a/src/components/Pomodoro.vue +++ b/src/components/Pomodoro.vue @@ -1,39 +1,43 @@ + + \ No newline at end of file