Skip to content

Commit

Permalink
Added HyperLink to Button, Added Hover Color
Browse files Browse the repository at this point in the history
  • Loading branch information
j-sund committed Dec 8, 2023
1 parent 420d4d3 commit c632517
Showing 1 changed file with 11 additions and 2 deletions.
13 changes: 11 additions & 2 deletions src/web/src/pages/FinalExamScheduler.vue
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@

<b-col md="7">
<div class="mt-3">
<b-button variant="secondary" class = "button-color" @click="goToSchoolWebsite">Go to School Website</b-button>
<b-button variant="secondary" class = "button-color" @mouseover = "hoverButton" @click="goToSchoolWebsite">Go to School Website</b-button>
</div>
</b-col>

Expand Down Expand Up @@ -261,6 +261,10 @@ export default {
}
});
},
goToSchoolWebsite() {
window.open('https://info.rpi.edu/registrar/grades', '_blank');
},
},
};
</script>
Expand Down Expand Up @@ -289,7 +293,12 @@ export default {
}
.button-color {
color:black;
color:white;
}
.button-color:hover {
color: black;
}
</style>

0 comments on commit c632517

Please sign in to comment.