| 1234567891011121314151617181920212223242526272829303132333435 |
- /* pages/login/index.wxss */
- #login-container {
- position: absolute;
- top: 0;
- left: 0;
- width: 100%;
- height: 100%;
- background-color: rgba(0, 0, 0, 0.8)
- }
- .login-wrapper {
- margin-top: 40%;
- padding: 20px;
- }
- .login-header {
- background-color: #ffffff;
- text-align: center;
- padding: 20px;
- }
- .login-avatar-wrapper {
- width: 65px;
- height: 65px;
- border-radius: 50px;
- overflow:hidden;
- border:3px #e3e3e3 solid;
- }
- .login-avatar-container {
- display: flex;
- justify-content: center;
- }
- .login-dialog {
- padding-top: 20px;
- background-color: white;
- border-radius: 5px;
- }
|