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

style(console): remove margin-top of the manage language button (#2135)

This commit is contained in:
Xiao Yijun 2022-10-12 16:12:32 +08:00 committed by GitHub
parent 8a7f875767
commit 708e099c9e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 0 additions and 7 deletions

View file

@ -1,5 +0,0 @@
@use '@/scss/underscore' as _;
.manageLanguage {
margin-top: _.unit(2);
}

View file

@ -3,7 +3,6 @@ import { useState } from 'react';
import Button from '@/components/Button';
import LanguageEditor from './LanguageEditor';
import * as styles from './ManageLanguageButton.module.scss';
const ManageLanguageButton = () => {
const [isLanguageEditorOpen, setIsLanguageEditorOpen] = useState(false);
@ -13,7 +12,6 @@ const ManageLanguageButton = () => {
<Button
type="plain"
title="sign_in_exp.others.languages.manage_language"
className={styles.manageLanguage}
onClick={() => {
setIsLanguageEditorOpen(true);
}}