From 77324dfa6217fed7cbdf04000e618d0522ad6d18 Mon Sep 17 00:00:00 2001 From: Erastus Amunwe Date: Fri, 4 Dec 2020 14:08:49 +0200 Subject: [PATCH] Added/changed and applied themes, fixed responsive issues --- src/App.vue | 34 +++++++++++++++++++++++++--------- src/components/NavBar.vue | 2 +- src/components/Options.vue | 13 +++++-------- src/components/Search.vue | 28 ++++++++++++++-------------- src/components/Selection.vue | 14 +++++++------- src/components/Verses.vue | 11 +++++++---- 6 files changed, 59 insertions(+), 43 deletions(-) diff --git a/src/App.vue b/src/App.vue index 65c7e17..ba51c2a 100644 --- a/src/App.vue +++ b/src/App.vue @@ -6,7 +6,7 @@ --> -
+
@@ -61,7 +61,9 @@ export default { @import "../node_modules/uikit/src/less/uikit.less"; @import "../node_modules/uikit/src/less/uikit.theme.less"; @global-link-color: #DA7D02; -@global-background: #f5f4f4;; +@global-background: #f5f4f4; +@primary:#55828b; +@secondary: #fed18c; #app { font-family: Avenir, Helvetica, Arial, sans-serif; -webkit-font-smoothing: antialiased; @@ -95,10 +97,15 @@ export default { } .primary { - background-color: #f9a03f !important; -} + // background-color: #813405 !important; + // background-color: #55828b !important; + background-color: @primary !important; + } .secondary { - background-color: #813405 !important; + // background-color: #f9a03f !important; + // background-color: #87bba2 !important; + // background-color: #fed18c !important; + background-color: @secondary !important; } .tertiary { background-color: #d45113; @@ -107,13 +114,22 @@ export default { background-color: rgba(224, 222, 221, 1); } .text-primary { - color: #f9a03f !important; -} + // color: #813405 !important; + color: #55828b !important; + } .text-secondary { - color: #813405 !important; - // font: #813405 !important; + // color: #f9a03f !important; + // color: #87bba2 !important; + color: #fed18c !important; } .text-tertiary { color: #d45113; } +.rounded { + border-radius: 10px; +} +.rounded-bottom { + border-bottom-left-radius: 10px; + border-bottom-right-radius: 10px; +} diff --git a/src/components/NavBar.vue b/src/components/NavBar.vue index c5fe053..80baaea 100644 --- a/src/components/NavBar.vue +++ b/src/components/NavBar.vue @@ -19,7 +19,7 @@