Skip to content

Commit

Permalink
Add IoW Styling
Browse files Browse the repository at this point in the history
  • Loading branch information
webb-ben committed Oct 28, 2024
1 parent 1cadaf7 commit 4fb99bd
Show file tree
Hide file tree
Showing 8 changed files with 13 additions and 13 deletions.
Binary file modified public/favicon.ico
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file removed src/assets/img/logo.png
Binary file not shown.
Binary file added src/assets/img/poweredbycgs.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
5 changes: 5 additions & 0 deletions src/components/app/AppFooter.vue
Original file line number Diff line number Diff line change
Expand Up @@ -9,13 +9,17 @@
{{ version }}
</p>
</v-col>
<a href="https://cgsearth.org" title="cgs">
<img :src="poweredbycgs" style="height: 40px;" />
</a>
</v-row>
</v-footer>
</div>
</template>

<script>
import { name, version, homepage } from "../../../package";
import poweredbycgs from "@/assets/img/poweredbycgs.png";
import { defineComponent } from "vue";
Expand All @@ -27,6 +31,7 @@ export default defineComponent({
version: version,
name: name,
home: homepage,
poweredbycgs: poweredbycgs
};
},
});
Expand Down
4 changes: 2 additions & 2 deletions src/components/app/AppHeader.vue
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<v-container fluid>
<v-row fill-height>
<a :href="provider" title="hub2box">
<img :src="logo" class="pl-6 my-3" />
<img :src="logo" style="height: 80px;" class="pl-6 my-3" />
</a>
<v-spacer />
<app-settings class="ma-3" />
Expand All @@ -33,7 +33,7 @@ export default defineComponent({
},
data: function () {
return {
provider: "https://www.usbr.gov/",
provider: "https://internetofwater.org/",
logo: logo,
};
},
Expand Down
5 changes: 0 additions & 5 deletions src/components/app/AppNav.vue
Original file line number Diff line number Diff line change
Expand Up @@ -48,11 +48,6 @@ export default defineComponent({
target: "/services",
href: undefined,
},
{
text: "rise",
target: undefined,
href: "https://data.usbr.gov/",
},
{
text: "documentation",
target: undefined,
Expand Down
12 changes: 6 additions & 6 deletions src/plugins/vuetify.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,12 @@ import { aliases, mdi } from 'vuetify/iconsets/mdi'
const usbrSkinTheme = {
colors: {
background: '#FFFFFF',
primary: '#003E51',
secondary: '#C69214',
error: '#B00020',
info: '#DDCBA4',
success: '#007396',
warning: '#FB8C00',
primary: '#55677F',
secondary: '#1B335F',
error: '#E6000B',
info: '#A1C6D5',
success: '#00A087',
warning: '#FCB95A',
}
}

Expand Down

0 comments on commit 4fb99bd

Please sign in to comment.