0
0
Fork 0

Begin on the discard hand button

This commit is contained in:
Oliver-Akins 2020-12-18 18:41:15 -07:00
parent 82e6070976
commit c08e61117e

View file

@ -1,17 +1,35 @@
<template>
<div></div>
<div id="DiscardHandButton">
AH!
</div>
</template>
<script>
export default {
name: `DiscardHand`,
components: {},
data() {return {
confirmVisible: false,
}},
computed: {},
methods: {},
methods: {
discardHand() {},
},
}
</script>
<style>
<style scoped>
@import "../css/theme.css";
@import "../css/style.css";
#DiscardHandButton {
background-color: var(--background3);
border-radius: 100% 0 0 0;
height: var(--size);
width: var(--size);
position: fixed;
--size: 120px;
bottom: 0;
right: 0;
}
</style>