1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768 |
- html,
- body {
- padding: 0 !important;
- margin: 0 !important;
- font-size: 14px;
- width: 100%;
- height: 100%;
- background: #f2f2f2;
- overflow: hidden;
- }
- /*---滚动条默认显示样式--*/
- ::-webkit-scrollbar-thumb{
- height:50px;
- outline-offset:-2px;
- outline:2px solid #dddee0;
- border: 2px solid #dddee0;
- background-color: #dddee0;
- border-radius: 4px;
- }
- /*---鼠标点击滚动条显示样式--*/
- ::-webkit-scrollbar-thumb:hover{
- height:50px;
- }
- /*---滚动条大小--*/
- ::-webkit-scrollbar{
- width:8px;
- height:8px;
- }
- /*---滚动框背景样式--*/
- ::-webkit-scrollbar-track-piece{}
- #app {
- width: 100%;
- height: 100%;
- }
- .el-menu{
- border-right: none;
- }
- .el-breadcrumb{
- line-height: 30px;
- }
- .el-user-popover{
- min-width: 90px;
- display: flex;
- flex-direction: column;
- line-height: 26px;
- padding: 0px;
- }
- .middle_sty {
- display: flex;
- justify-content: center;
- align-items: center;
- }
- .icon-wushuju {
- // display: block;
- width: 100px;
- height: 100px;
- font-size: 50px !important;
- // margin: auto;
- }
|