0
Fork 0
mirror of https://github.com/logto-io/logto.git synced 2025-01-20 21:32:31 -05:00

style(console): update save button styles on language editor (#4999)

This commit is contained in:
Xiao Yijun 2023-11-30 10:45:28 +08:00 committed by GitHub
parent 6c5213cb65
commit b3163e97f5
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 3 deletions

View file

@ -109,10 +109,11 @@
.footer { .footer {
flex-shrink: 0; flex-shrink: 0;
border-top: 1px solid var(--color-divider); border-top: 1px solid var(--color-divider);
height: 85px; height: 60px;
display: flex; display: flex;
flex-direction: row-reverse; flex-direction: row-reverse;
padding: _.unit(5); align-items: center;
padding-right: _.unit(5);
} }
} }
} }

View file

@ -271,7 +271,6 @@ function LanguageDetails() {
<Button <Button
isLoading={isSubmitting} isLoading={isSubmitting}
type="primary" type="primary"
size="large"
title="general.save" title="general.save"
onClick={async () => onSubmit()} onClick={async () => onSubmit()}
/> />