made background-gradient of matches variable + fixed background image on player not scaling properly on mobile devices

This commit is contained in:
2021-10-24 16:41:21 +02:00
committed by Giovanni Harting
parent f610b27317
commit 95a3fb085a
4 changed files with 79 additions and 57 deletions

View File

@@ -1,9 +1,9 @@
<template>
<div class="bg-secondary text-center pt-5 pb-4">
<div class="footer bg-secondary text-center pt-5 pb-4">
<div class="icons pb-4">
<a class="text-white" href="https://git.harting.dev/CSGOWTF" target="_blank" aria-label="Git Link">
<!-- <i class="bi bi-github"></i>-->
<img src="../assets/images/icons/gitea.svg" alt="Gitea Icon">
<a aria-label="Git Link" class="text-white" href="https://git.harting.dev/CSGOWTF" target="_blank">
<!-- <i class="bi bi-github"></i>-->
<img alt="Gitea Icon" src="../assets/images/icons/gitea.svg">
</a>
</div>
<div class="text">
@@ -22,12 +22,17 @@ export default {
}
</script>
<style scoped>
img {
width: 35px;
height: 35px;
}
p {
font-size: .85rem;
<style lang="scss" scoped>
.footer {
height: 200px;
img {
width: 35px;
height: 35px;
}
p {
font-size: .85rem;
}
}
</style>