Begin on the discard hand button
This commit is contained in:
parent
82e6070976
commit
c08e61117e
1 changed files with 21 additions and 3 deletions
|
|
@ -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>
|
||||
Loading…
Add table
Add a link
Reference in a new issue