[bugfix] Config Window: DeeplAuthKey. fix save button's design that was a bit off.

This commit is contained in:
Sakamoto Shiina
2024-08-06 15:24:17 +09:00
parent 9bd82baf53
commit ca2154b3d8
2 changed files with 3 additions and 1 deletions

View File

@@ -26,7 +26,7 @@ export const DeeplAuthKey = () => {
return (
<div className={styles.container}>
<div className={styles.entry_section_wrapper}>
<_Entry ref={entryRef} width="32rem" onChange={onchangeEntryAuthKey}/>
<_Entry ref={entryRef} width="30rem" onChange={onchangeEntryAuthKey}/>
<button className={styles.save_button} onClick={saveAuthKey}>Save</button>
{is_editable
? null

View File

@@ -47,6 +47,8 @@
color: var(--dark_basic_text_color);
font-size: 1.4rem;
border-radius: 0.4rem;
text-align: center;
flex-shrink: 0;
&:hover {
background-color: var(--primary_500_color);
}