Skip to content

Commit

Permalink
Merge branch 'master' into multiple-time-periods
Browse files Browse the repository at this point in the history
  • Loading branch information
solderq35 committed Jan 3, 2024
2 parents fef47f9 + f2cf6cf commit 20354a2
Show file tree
Hide file tree
Showing 2 changed files with 32 additions and 13 deletions.
41 changes: 30 additions & 11 deletions src/components/extras/contact.vue
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,15 @@
<div class="center">
<div class="contact-div">
<p class="body">
Please email us at
<a href="mailto:sustainability@oregonstate.edu">sustainability@oregonstate.edu</a>
for feedback or questions, or check our
<a href="/#/getstarted">FAQ</a>
<el-row :gutter="20">
<el-col :xs="16" :sm="16" :md="16" :lg="16" :xl="16">
<a href="https://fa.oregonstate.edu/contact">Contact us here</a>
with your comments and questions. Be sure to select "Sustainability Office" from the Category drop-down
menu. You can also check out our
<a href="/#/getstarted">FAQ</a>
<el-image class="demo-visual" :src="contactDemo"></el-image>
</el-col>
</el-row>
</p>
</div>
</div>
Expand All @@ -20,7 +25,11 @@
export default {
name: 'contact',
props: [],
data () {},
data () {
return {
contactDemo: 'https://energy-dashboard.s3-us-west-2.amazonaws.com/images/contactImage.png'
}
},
watch: {},
mounted () {},
methods: {}
Expand All @@ -29,7 +38,6 @@ export default {
<style lang="scss" scoped>
.cont {
text-align: center;
padding-top: 10%;
}
.title {
font-size: 80px;
Expand All @@ -40,14 +48,25 @@ export default {
font-size: 28px;
color: black;
}
.contact-div {
max-width: 800px;
}
.center {
margin: auto;
width: 50%;
padding: 10px;
width: 75%;
padding: 20px;
}
.demo-visual {
height: 100%;
width: auto;
box-shadow: rgba(0, 0, 0, 0.19) 0px 6px 8px;
}
.el-row {
display: flex;
align-items: center;
justify-content: center;
text-align: left;
}
@media only screen and (max-width: 600px) {
.center {
width: 80%;
Expand Down
4 changes: 2 additions & 2 deletions src/components/get_started/faq.vue
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,8 @@
</el-collapse-item>
<el-collapse-item title="How can I submit questions or feedback?" name="7">
<div>
Please email us at
<a href="mailto:sustainability@oregonstate.edu">sustainability@oregonstate.edu</a>.
Check out our
<a href="/#/contact">contact page.</a>
</div>
</el-collapse-item>
</el-collapse>
Expand Down

0 comments on commit 20354a2

Please sign in to comment.