main.css 249 B

1234567891011121314151617181920212223
  1. /* HelloClaw 全局样式 */
  2. @import './base.css';
  3. * {
  4. margin: 0;
  5. padding: 0;
  6. box-sizing: border-box;
  7. }
  8. html, body {
  9. height: 100%;
  10. width: 100%;
  11. }
  12. #app {
  13. height: 100%;
  14. width: 100%;
  15. }
  16. a {
  17. text-decoration: none;
  18. color: inherit;
  19. }