1234567891011121314151617181920212223242526 |
- .DingLogin {
- width: 100%;
- height: 100%;
- background-image: url('../../assets/img/loginBac.jpg');
- background-size: 100% 100%;
- :global {
- .DingLoginBox {
- padding-top: 150px;
- width: 100%;
- height: 100%;
- background-color: rgba(255, 255, 255, 0.4);
- display: flex;
- justify-content: center;
- align-items: center;
- flex-direction: column;
- & > h3 {
- margin-top: 10px;
- letter-spacing: 4px;
- span {
- color: var(--themeColor);
- }
- }
- }
- }
- }
|