推拿小程序前端代码仓库
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

41 lines
638 B

<template>
<view class="flex title__view">
<view class="underline"></view>
<view class="title">
<slot></slot>
</view>
</view>
</template>
<script>
export default {
data() {
return {
}
}
}
</script>
<style scoped lang="scss">
.title__view {
position: relative;
.underline {
margin-top: 26rpx;
width: 146rpx;
height: 8rpx;
border-radius: 4rpx;
background-image: linear-gradient(to right, #84A73F, #D8FF8F);
}
.title {
transform: translateX(-10rpx);
color: #000000;
font-size: 28rpx;
font-weight: 700;
position: absolute;
top: 0;
}
}
</style>