Files
template-10559/src/pages/index/Header.scss
赵忠林 a6b274d78d style(header): 更新头部背景渐变色
- 将.header-bg的背景渐变色从绿色系更改为金色系
- 将.header-bg2的背景渐变色从绿色系更改为金色系

feat(routes): 添加gift路由配置

- 在app.config.ts中新增gift根路由配置
-为gift路由添加index页面配置
- 调整routes数组格式以提高可读性
2025-09-25 00:27:50 +08:00

17 lines
305 B
SCSS

.header-bg{
background: linear-gradient(to bottom, #FFD700, #FFA500);
height: 335px;
width: 100%;
top: 0;
position: absolute;
z-index: 0;
}
.header-bg2{
background: linear-gradient(to bottom, #FFD700, #FFA500);
height: 200px;
width: 100%;
top: 0;
position: absolute;
z-index: 0;
}