| 1234567891011121314151617181920212223 |
- /* HelloClaw 全局样式 */
- @import './base.css';
- * {
- margin: 0;
- padding: 0;
- box-sizing: border-box;
- }
- html, body {
- height: 100%;
- width: 100%;
- }
- #app {
- height: 100%;
- width: 100%;
- }
- a {
- text-decoration: none;
- color: inherit;
- }
|