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>
|
<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>
|
||||||
Loading…
Add table
Add a link
Reference in a new issue