mirror of
https://github.com/logto-io/logto.git
synced 2025-01-13 21:30:30 -05:00
110 lines
2.1 KiB
SCSS
110 lines
2.1 KiB
SCSS
|
@use '@/scss/underscore' as _;
|
||
|
@use '@logto/shared/scss/console-themes' as themes;
|
||
|
|
||
|
body {
|
||
|
background: #edebf6;
|
||
|
}
|
||
|
|
||
|
.app {
|
||
|
@include themes.light;
|
||
|
|
||
|
.card {
|
||
|
background: var(--color-background);
|
||
|
border-radius: 16px;
|
||
|
position: absolute;
|
||
|
left: 50%;
|
||
|
top: 50%;
|
||
|
width: 640px;
|
||
|
height: 640px;
|
||
|
transform: translate(-50%, -50%);
|
||
|
display: flex;
|
||
|
flex-direction: column;
|
||
|
justify-content: center;
|
||
|
align-items: center;
|
||
|
text-align: center;
|
||
|
font-size: 14px;
|
||
|
line-height: 20px;
|
||
|
|
||
|
.title {
|
||
|
margin-top: _.unit(6);
|
||
|
color: var(--color-neutral-10);
|
||
|
font-weight: 600;
|
||
|
font-size: 16px;
|
||
|
line-height: 24px;
|
||
|
}
|
||
|
|
||
|
.text {
|
||
|
margin-top: _.unit(1);
|
||
|
color: var(--color-caption);
|
||
|
}
|
||
|
|
||
|
.infoCard {
|
||
|
margin-top: _.unit(4);
|
||
|
padding: _.unit(1.5) _.unit(4);
|
||
|
color: var(--color-text);
|
||
|
background: var(--color-layer-2);
|
||
|
border-radius: 8px;
|
||
|
width: 400px;
|
||
|
|
||
|
|
||
|
p {
|
||
|
margin: _.unit(2.5) 0;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
.button {
|
||
|
user-select: none;
|
||
|
margin-top: _.unit(8);
|
||
|
border: 1px solid var(--color-outline);
|
||
|
border-radius: 8px;
|
||
|
padding: _.unit(3) _.unit(6);
|
||
|
font-weight: 500;
|
||
|
color: var(--color-text);
|
||
|
transition: background ease-in-out 0.2s;
|
||
|
|
||
|
&:hover {
|
||
|
cursor: pointer;
|
||
|
background: var(--color-hover);
|
||
|
}
|
||
|
}
|
||
|
|
||
|
.continue {
|
||
|
margin-top: _.unit(12);
|
||
|
display: flex;
|
||
|
align-items: center;
|
||
|
column-gap: _.unit(4);
|
||
|
color: var(--color-caption);
|
||
|
|
||
|
.hr {
|
||
|
width: 110px;
|
||
|
border-top: 1px solid var(--color-divider);
|
||
|
}
|
||
|
}
|
||
|
|
||
|
.actions {
|
||
|
display: flex;
|
||
|
align-items: center;
|
||
|
margin-top: _.unit(5);
|
||
|
|
||
|
span {
|
||
|
opacity: 60%;
|
||
|
height: 12px;
|
||
|
width: 1px;
|
||
|
background: var(--color-primary);
|
||
|
margin: 0 _.unit(4);
|
||
|
border-radius: 1px;
|
||
|
}
|
||
|
|
||
|
a {
|
||
|
color: var(--color-primary);
|
||
|
text-decoration: none;
|
||
|
padding: _.unit(0.5) _.unit(1);
|
||
|
|
||
|
&:hover {
|
||
|
text-decoration: underline;
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|