app.component.less 311 B

1234567891011121314151617181920212223
  1. :host {
  2. width: 100%;
  3. height: 100%;
  4. display: flex;
  5. text-rendering: optimizeLegibility;
  6. -webkit-font-smoothing: antialiased;
  7. -moz-osx-font-smoothing: grayscale;
  8. }
  9. .app-layout {
  10. width: 100%;
  11. height: 100vh;
  12. }
  13. nz-content {
  14. margin: 24px;
  15. }
  16. .inner-content {
  17. padding: 24px;
  18. background: #fff;
  19. }