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> <template>
<div></div> <div id="DiscardHandButton">
AH!
</div>
</template> </template>
<script> <script>
export default { export default {
name: `DiscardHand`, name: `DiscardHand`,
components: {}, components: {},
data() {return {
confirmVisible: false,
}},
computed: {}, computed: {},
methods: {}, methods: {
discardHand() {},
},
} }
</script> </script>
<style> <style scoped>
@import "../css/theme.css"; @import "../css/theme.css";
@import "../css/style.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> </style>