fix: Header 增加 bg 用于设置顶部 border

This commit is contained in:
Argo Zhang 2019-08-18 17:50:38 +08:00
parent 54797f6a92
commit 905f1633a8
No known key found for this signature in database
GPG Key ID: 152E398953DDF19F
2 changed files with 7 additions and 2 deletions

View File

@ -1,6 +1,7 @@
@model NavigatorBarModel
<header class="header">
<div class="bg">
<div class="bg"></div>
<div class="bg-color">
<div class="cloud">
<div class="d-flex align-items-center bird">
<a id="navbar" href="#" class="sidebar-toggle-box">

View File

@ -1,9 +1,13 @@
/*Title*/
.bg {
display: none;
}
.header {
border-bottom: 1px solid #ccc;
}
.header .bg {
.header .bg-color {
background-image: linear-gradient(to bottom, #196eac 0,#7fb4d9 100%);
}