[WIP] Add events, buttons and teammates

This commit is contained in:
megavrilinvv
2022-10-21 21:20:29 +03:00
parent e6335c09b4
commit fa9afb63bb
5 changed files with 114 additions and 14 deletions

View File

@@ -0,0 +1,21 @@
<template lang="pug">
button.cursor-pointer.icon-long-arrow.open-button.text-xs.pt-1
</template>
<script>
export default {
name: "OpenButton",
};
</script>
<style lang="sass" scoped>
.open-button
outline: none
border: none
width: 24px
height: 24px
max-height: 24px
color: var(--btn-blue-color)
background-color: var(--bg-ligth-blue-color)
border-radius: 50%
</style>