0
Fork 0
mirror of https://github.com/logto-io/logto.git synced 2025-03-17 22:31:28 -05:00

style(experience): update mfa-related styles (#4764)

This commit is contained in:
Xiao Yijun 2023-10-27 10:23:13 +08:00 committed by GitHub
parent 757e8ea2b0
commit a5132fe4bd
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 19 additions and 1 deletions

View file

@ -5,6 +5,7 @@
height: unset;
gap: _.unit(4);
border-radius: 12px;
border-color: var(--color-line-divider);
}
.icon {
@ -16,10 +17,11 @@
.title {
flex: 1;
@include _.flex-column;
align-items: flex-start;
text-align: left;
.name {
font: var(--font-body-1);
font: var(--font-label-1);
}
.description {
@ -27,3 +29,11 @@
color: var(--color-type-secondary);
}
}
:global(body.desktop) {
.title {
.name {
font: var(--font-label-2);
}
}
}

View file

@ -51,4 +51,12 @@
text-decoration: underline;
}
}
.skipButton {
font: var(--font-label-2);
&:hover {
text-decoration: underline;
}
}
}