- Move all Launcher components to LANCommander.Launcher.UI namespace - Move all SCSS files next to components (when possible) - Refactor styles that control overflow of content into titlebar to MainWindow only - Remove use in launcher UI of SDK.Client
66 lines
No EOL
1.2 KiB
SCSS
66 lines
No EOL
1.2 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);
|
|
background: rgba(0, 0, 0, .75);
|
|
backdrop-filter: blur(8px);
|
|
|
|
.ant-page-header {
|
|
background: none;
|
|
padding-bottom: 0;
|
|
}
|
|
|
|
.ant-form {
|
|
padding: 24px;
|
|
}
|
|
|
|
.ant-form-item:last-child {
|
|
margin-bottom: 0;
|
|
}
|
|
|
|
.ant-divider {
|
|
margin: 0;
|
|
}
|
|
|
|
.ant-list-item {
|
|
padding: 12px 16px;
|
|
|
|
&:hover {
|
|
background-color: rgba(255, 255, 255, .1);
|
|
cursor: pointer;
|
|
}
|
|
|
|
&-meta-title {
|
|
margin-bottom: 0;
|
|
}
|
|
}
|
|
|
|
.ant-list > div:not(.load-more):not(.ant-spin-nested-loading) {
|
|
display: none;
|
|
}
|
|
|
|
.load-more {
|
|
padding: 16px;
|
|
}
|
|
}
|
|
}
|
|
|
|
.authentication-provider-btn {
|
|
text-align: left;
|
|
width: 100%;
|
|
|
|
.anticon {
|
|
margin-right: 8px;
|
|
}
|
|
} |