1234567891011121314151617181920212223242526272829 |
- .login-container {
- height: 100%;
- .logo-text {
- margin: 0;
- font-size: 42px;
- font-weight: bold;
- color: #34495e;
- white-space: nowrap;
- text-align: center;
- margin-bottom: 40px;
- }
- .login-form {
- width: 420px;
- padding: 45px;
- border-radius: 10px;
- box-shadow: rgb(0 0 0 / 10%) 0 2px 10px 2px;
- .login-btn {
- display: flex;
- justify-content: space-between;
- align-items: center;
- width: 100%;
- margin-top: 40px;
- white-space: nowrap;
- .el-button {
- width: 185px;
- }
- }
- }
- }
|