tachybase_todo/packages/app/src/global.less
2021-01-05 12:50:28 +08:00

58 lines
879 B
Plaintext

.win {
/* width */
::-webkit-scrollbar {
width: 8px;
height: 8px;
}
/* Track */
::-webkit-scrollbar-track {
background: #f1f1f1;
}
/* Handle */
::-webkit-scrollbar-thumb {
background: #888;
}
/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
background: #555;
}
}
.ant-page-header-footer {
margin-top: 5px;
}
.button-group {
display: flex;
justify-content: flex-end;
width: 100%;
}
.spinning--absolute {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
display: flex;
align-items: center;
justify-content: center;
max-height: inherit !important;
}
.ant-drawer.noco-drawer {
.ant-drawer-content-wrapper {
width: 40%;
}
}
@media only screen and (max-width: 800px) {
.ant-drawer.noco-drawer {
.ant-drawer-content-wrapper {
width: 100% !important;
}
}
}