12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788 |
- :host {
- width: 100%;
- height: 100%;
- display: flex;
- text-rendering: optimizeLegibility;
- -webkit-font-smoothing: antialiased;
- -moz-osx-font-smoothing: grayscale;
- }
- app-main {
- width: 100%;
- }
- .app-layout {
- width: 100%;
- height: 100vh;
- }
- .menu-sidebar {
- position: relative;
- z-index: 8;
- min-height: 100vh;
- box-shadow: 2px 0 6px rgba(0, 21, 41, 0.35);
- }
- .header-trigger {
- height: 64px;
- padding: 20px 24px;
- font-size: 20px;
- cursor: pointer;
- transition: all 0.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 0.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, 0.08);
- }
- nz-content {
- margin: 24px;
- }
- .inner-content {
- padding: 24px;
- background: #fff;
- /* height: 100%; */
- }
|