-
Notifications
You must be signed in to change notification settings - Fork 2
/
app.scss
43 lines (39 loc) · 1.03 KB
/
app.scss
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
page {
position: relative;
box-sizing: border-box;
/** 最小高度填充满视口,方便设置页面背景色 */
min-height: 100vh;
/** 默认字体 */
font-family: system-ui, -apple-system;
/** 移动端按钮按下时,去除高亮 */
-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
/** 默认行高 */
line-height: 1;
}
/**
* bug: root-portal 在 webview 模式,无法继承全局 page 的样式
* @see https://github.com/xiaweiss/miniprogram-bug-report/issues/40
*/
view {
font-family: system-ui, -apple-system;
-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
view,
input {
box-sizing: border-box;
}
image {
display: block;
}
/** 分享按钮等默认样式重置,使用时需要设置 size="mini" */
.app-button {
display: block!important;
padding: 0!important;
/**
* bug: [skyline] button 组件在 flex 元素中渲染异常
* @see https://github.com/xiaweiss/miniprogram-bug-report/issues/43
* hack 重置 margin 样式
*/
margin: 0!important;
line-height: 1!important;
}