- 将.header-bg的背景渐变色从绿色系更改为金色系 - 将.header-bg2的背景渐变色从绿色系更改为金色系 feat(routes): 添加gift路由配置 - 在app.config.ts中新增gift根路由配置 -为gift路由添加index页面配置 - 调整routes数组格式以提高可读性
17 lines
305 B
SCSS
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;
|
|
}
|