53 lines
1 KiB
SCSS
53 lines
1 KiB
SCSS
.authentication-form {
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
justify-content: center;
|
|
gap: 24px;
|
|
|
|
.ant-spin-nested-loading {
|
|
width: 100%;
|
|
}
|
|
|
|
.authentication-box {
|
|
min-width: 640px;
|
|
max-width: 800px;
|
|
box-shadow: 0px 0px 32px rgba(255, 255, 255, .05);
|
|
}
|
|
|
|
.discovered-servers-pane {
|
|
background: rgba(0, 0, 0, .75);
|
|
backdrop-filter: blur(8px);
|
|
|
|
.ant-list-header {
|
|
padding: 12px;
|
|
text-align: center;
|
|
border: none;
|
|
}
|
|
|
|
.ant-list-item {
|
|
padding: 12px;
|
|
|
|
&:hover {
|
|
background-color: rgba(255, 255, 255, .1);
|
|
cursor: pointer;
|
|
}
|
|
|
|
&-meta-title {
|
|
margin-bottom: 0;
|
|
}
|
|
}
|
|
}
|
|
|
|
.login-form-pane {
|
|
background: #000;
|
|
|
|
.ant-form {
|
|
padding: 24px;
|
|
}
|
|
|
|
.ant-form-item:last-child {
|
|
margin-bottom: 0;
|
|
}
|
|
}
|
|
}
|