mirror of
https://github.com/n8n-io/n8n.git
synced 2025-03-05 20:50:17 -08:00
44 lines
826 B
Vue
44 lines
826 B
Vue
|
<template functional>
|
||
|
<button :class="$style.button" @click="(e) => listeners.click && listeners.click(e)">
|
||
|
<span :class="$style.text" v-text="props.label" />
|
||
|
</button>
|
||
|
</template>
|
||
|
|
||
|
<script lang="ts">
|
||
|
import Vue from 'vue';
|
||
|
export default Vue.extend({
|
||
|
name: 'n8n-square-button',
|
||
|
props: {
|
||
|
label: {
|
||
|
type: String,
|
||
|
},
|
||
|
},
|
||
|
});
|
||
|
</script>
|
||
|
|
||
|
<style lang="scss" module>
|
||
|
.button {
|
||
|
width: 28px;
|
||
|
height: 29px;
|
||
|
border-radius: var(--border-radius-base);
|
||
|
border: var(--color-background-xlight);
|
||
|
cursor: pointer;
|
||
|
display: flex;
|
||
|
align-items: center;
|
||
|
justify-content: center;
|
||
|
|
||
|
&:hover {
|
||
|
.text {
|
||
|
color: var(--color-primary) !important;
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|
||
|
.text {
|
||
|
font-size: var(--font-size-s);
|
||
|
font-weight: var(--font-weight-bold);
|
||
|
line-height: var(--font-line-height-loose);
|
||
|
color: var(--color-background-dark);
|
||
|
}
|
||
|
</style>
|