Skip to content
This repository has been archived by the owner on Dec 5, 2022. It is now read-only.

Fix action bar color according to the theme selected. #109

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<resources>
<color name="ns_primary">#F5F5F5</color>
<color name="ns_primaryDark">#53ba82</color>
<color name="ns_primaryDark">#000</color>
<color name="ns_accent">#33B5E5</color>
<color name="ns_blue">#272734</color>
</resources>
9 changes: 2 additions & 7 deletions template/app/components/App.vue
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{{#if_eq preset "Simple"}}<template>
<Page>
<ActionBar title="Welcome to NativeScript-Vue!"/>
<Page class="page">
<ActionBar title="Welcome to NativeScript-Vue!" class="action-bar"/>
<GridLayout colums="*" rows="*">
<Label class="message" :text="msg" col="0" row="0"/>
</GridLayout>
Expand All @@ -18,11 +18,6 @@
</script>

<style scoped>
ActionBar {
background-color: #53ba82;
color: #ffffff;
}

.message {
vertical-align: center;
text-align: center;
Expand Down