1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465 |
- @import "transition.scss";
- .flex-box {
- display: flex;
- flex-direction: column;
- width: 100%;
- height: 100%;
- padding: 15px;
- box-sizing: border-box;
- }
- .flex {
- display: flex;
- }
- .center {
- justify-content: center;
- align-items: center;
- text-align: center;
- }
- a {
- text-decoration: none;
- }
- /** element-plus **/
- .el-icon {
- text-align: center;
- }
- /** 用于提示信息 **/
- .my-tip {
- background-color: #f1f1f1;
- padding: 5px 10px;
- text-align: left;
- border-radius: 4px;
- }
- .system-scrollbar {
- &::-webkit-scrollbar {
- display: none;
- width: 6px;
- }
- &::-webkit-scrollbar-thumb {
- border-radius: 10px;
- background: rgba(144, 147, 153, 0.3);
- }
- &:hover {
- &::-webkit-scrollbar {
- display: block;
- }
- &::-webkit-scrollbar-thumb {
- border-radius: 10px;
- background: rgba(144, 147, 153, 0.3);
- &:hover {
- background: rgba(144, 147, 153, 0.5);
- }
- }
- }
- }
|