Files
gloabl_award_front/src/assets/css/style.less

37 lines
268 B
Plaintext
Raw Normal View History

2026-02-06 15:10:17 +08:00
body,
html,
div,
ul,
li,
h1,
h2,
h3,
p {
2026-02-06 17:20:57 +08:00
margin: 0;
padding: 0;
2026-02-06 15:10:17 +08:00
}
* {
2026-02-06 17:20:57 +08:00
box-sizing: border-box;
2026-02-06 15:10:17 +08:00
}
html,
body,
#app {
2026-02-06 17:20:57 +08:00
width: 100%;
height: 100%;
2026-02-06 15:10:17 +08:00
}
@keyframes loading {
2026-02-06 17:20:57 +08:00
0% {
transform: rotate(0deg);
}
2026-02-06 15:10:17 +08:00
2026-02-06 17:20:57 +08:00
100% {
transform: rotate(360deg);
}
2026-02-06 15:10:17 +08:00
}
2026-02-06 17:20:57 +08:00