File size: 375 Bytes
bbb6398 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 |
/* 基础样式 */
html {
overflow-y: scroll;
}
/* 防止Alpine.js组件在初始化前闪现 */
[x-cloak] {
display: none !important;
}
/* 移除所有元素聚焦时的边框 */
button:focus,
input:focus,
select:focus,
textarea:focus {
outline: none !important;
box-shadow: none !important;
border-color: inherit !important;
}
|