initial
This commit is contained in:
35
apps/pay/components/invoice-form/separator.vue
Normal file
35
apps/pay/components/invoice-form/separator.vue
Normal file
@@ -0,0 +1,35 @@
|
||||
<template>
|
||||
<div class="invoice-form-separator" />
|
||||
</template>
|
||||
|
||||
<style lang="scss">
|
||||
.invoice-form-separator {
|
||||
position: relative;
|
||||
margin: 40px 20px;
|
||||
border: 0 dashed $clr-grey-300;
|
||||
border-top-width: 2px;
|
||||
|
||||
&:last-child {
|
||||
margin-bottom: -16px;
|
||||
}
|
||||
|
||||
&::before,
|
||||
&::after {
|
||||
content: '';
|
||||
position: absolute;
|
||||
top: -24px;
|
||||
width: 48px;
|
||||
height: 48px;
|
||||
border-radius: 50%;
|
||||
background-color: $clr-grey-100;
|
||||
}
|
||||
|
||||
&::before {
|
||||
left: -60px;
|
||||
}
|
||||
|
||||
&::after {
|
||||
right: -60px;
|
||||
}
|
||||
}
|
||||
</style>
|
||||
Reference in New Issue
Block a user