81 lines
1.2 KiB
Plaintext
81 lines
1.2 KiB
Plaintext
:host {
|
|
display: flex;
|
|
text-rendering: optimizeLegibility;
|
|
-webkit-font-smoothing: antialiased;
|
|
-moz-osx-font-smoothing: grayscale;
|
|
}
|
|
|
|
.app-layout {
|
|
height: 100vh;
|
|
}
|
|
|
|
.menu-sidebar {
|
|
position: relative;
|
|
z-index: 10;
|
|
min-height: 100vh;
|
|
box-shadow: 2px 0 6px rgba(0,21,41,.35);
|
|
}
|
|
|
|
.header-trigger {
|
|
height: 64px;
|
|
padding: 20px 24px;
|
|
font-size: 20px;
|
|
cursor: pointer;
|
|
transition: all .3s,padding 0s;
|
|
}
|
|
|
|
.trigger:hover {
|
|
color: #1890ff;
|
|
}
|
|
|
|
.sidebar-logo {
|
|
position: relative;
|
|
height: 64px;
|
|
padding-left: 24px;
|
|
overflow: hidden;
|
|
line-height: 64px;
|
|
background: #001529;
|
|
transition: all .3s;
|
|
}
|
|
|
|
.sidebar-logo img {
|
|
display: inline-block;
|
|
height: 32px;
|
|
width: 32px;
|
|
vertical-align: middle;
|
|
}
|
|
|
|
.sidebar-logo h1 {
|
|
display: inline-block;
|
|
margin: 0 0 0 20px;
|
|
color: #fff;
|
|
font-weight: 600;
|
|
font-size: 14px;
|
|
font-family: Avenir,Helvetica Neue,Arial,Helvetica,sans-serif;
|
|
vertical-align: middle;
|
|
}
|
|
|
|
nz-header {
|
|
padding: 0;
|
|
width: 100%;
|
|
z-index: 2;
|
|
}
|
|
|
|
.app-header {
|
|
position: relative;
|
|
height: 64px;
|
|
padding: 0;
|
|
background: #fff;
|
|
box-shadow: 0 1px 4px rgba(0,21,41,.08);
|
|
}
|
|
|
|
nz-content {
|
|
margin: 24px;
|
|
}
|
|
|
|
.inner-content {
|
|
padding: 24px;
|
|
background: #fff;
|
|
height: 100%;
|
|
}
|