Merge branch 'master' into UC-13

This commit is contained in:
Алексей Дёмин
2022-10-13 09:54:50 +03:00
committed by GitHub
9 changed files with 188 additions and 21 deletions

View File

@@ -0,0 +1,24 @@
<template lang="pug">
button.arrow-button.flex.items-center.icon-down-arrow.px-2.pt-px
</template>
<script>
export default {
name: "ArrowButton",
data() {
return {};
},
};
</script>
<style lang="sass" scoped>
.arrow-button
width: 32px
height: 32px
background: var(--btn-light-blue-color)
color: var(--btn-blue-color)
border-radius: 50%
font-size: 16px
&:hover
background: #a0b4f0
</style>