其实就是给body加一个min-width和min-height
然后左右和上下的滚动条,设置一下样式
body {
min-width: calc(1920px - 2rem);
min-height: calc(1080px - 8rem);
&::-webkit-scrollbar {
width: 0.75rem;
height: 0.75rem;
}
&::-webkit-scrollbar-thumb {
background: #dbd6d1;
border-radius: 0.75rem;
border: 0.125rem solid #dbd6d1;
}
}