Files
airport-chengdu-web/src/app/theme/scss/base.scss
T

41 lines
710 B
SCSS

/*页面统一样式*/
html,
body {
width: 100%;
height: 100%;
font-size: 14px !important;
font-family: "Roboto", sans-serif !important;
background-color: #fff !important;
// color: rgb(0, 0, 0) !important;
}
/*添加手形*/
a[href],
input[type="submit"],
input[type="image"],
label[for],
select,
button,
.c-pointer {
cursor: pointer;
}
/*整体部分*/
::-webkit-scrollbar {
width: 10px;
height: 10px;
}
/*滑动轨道*/
::-webkit-scrollbar-track {
background: rgba(0, 0, 0, 0.06);
}
/*滑块*/
::-webkit-scrollbar-thumb {
background: rgba(0, 0, 0, 0.08);
&:hover {
background: rgba(0, 0, 0, 0.15);
}
}
.anticon svg{
vertical-align: unset;
}