Files
tank-front/src/assets/css/global/responsive.less
T

37 lines
518 B
Plaintext

@media (min-width: 992px) {
.visible-mobile {
display: none !important;
}
.visible-pc {
display: block !important;
}
}
@media (max-width: 992px) {
.visible-mobile {
display: block !important;
}
.visible-pc {
display: none !important;
}
}
//浏览器滚动条样式
.thin-scrollbar {
::-webkit-scrollbar {
width: 3px;
height: 3px;
}
::-webkit-scrollbar-track {
background: transparent;
}
::-webkit-scrollbar-thumb {
background: rgba(0, 0, 0, 0.3);
}
}