Add new widget
This commit is contained in:
parent
873a49c7dc
commit
9ba1485c75
|
|
@ -1,5 +1,35 @@
|
||||||
<template>
|
<template>
|
||||||
<div>
|
<div class="add-content-element">
|
||||||
<h1>Add Block</h1>
|
<add-icon class="add-content-element__icon"></add-icon>
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
import AddIcon from '@/components/icons/AddIcon';
|
||||||
|
|
||||||
|
export default {
|
||||||
|
components: {
|
||||||
|
AddIcon
|
||||||
|
}
|
||||||
|
}
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<style scoped lang="scss">
|
||||||
|
@import "@/styles/_variables.scss";
|
||||||
|
|
||||||
|
.add-content-element {
|
||||||
|
display: flex;
|
||||||
|
justify-content: center;
|
||||||
|
border-bottom: 2px solid $color-grey;
|
||||||
|
margin-bottom: 21px + 25px;
|
||||||
|
|
||||||
|
&__icon {
|
||||||
|
width: 40px;
|
||||||
|
height: 40px;
|
||||||
|
fill: $color-grey;
|
||||||
|
margin-bottom: -21px;
|
||||||
|
background-color: $color-white;
|
||||||
|
border-radius: 50px;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
</style>
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue