Replace CSS calc with box-sizing for better compatibility.
Signed-off-by: zyxwvu Shi <i@shiyc.cn>
This commit is contained in:
parent
33a93a12b4
commit
3d21406015
|
@ -24,8 +24,8 @@ export default {
|
|||
|
||||
<style lang="scss" scoped>
|
||||
.app-main {
|
||||
/* 50= navbar 50 */
|
||||
min-height: calc(100vh - 50px);
|
||||
min-height: 100vh;
|
||||
box-sizing: border-box;
|
||||
width: 100%;
|
||||
position: relative;
|
||||
overflow: hidden;
|
||||
|
@ -36,11 +36,6 @@ export default {
|
|||
}
|
||||
|
||||
.hasTagsView {
|
||||
.app-main {
|
||||
/* 84 = navbar + tags-view = 50 + 34 */
|
||||
min-height: calc(100vh - 84px);
|
||||
}
|
||||
|
||||
.fixed-header+.app-main {
|
||||
padding-top: 84px;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue