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:
parent
8a7f875767
commit
708e099c9e
2 changed files with 0 additions and 7 deletions
|
@ -1,5 +0,0 @@
|
|||
@use '@/scss/underscore' as _;
|
||||
|
||||
.manageLanguage {
|
||||
margin-top: _.unit(2);
|
||||
}
|
|
@ -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);
|
||||
}}
|
||||
|
|
Loading…
Add table
Reference in a new issue