ソースを参照

increase the width of editiontitle's input

AlexiCauvin 5 年 前
コミット
0ed82d47f5

+ 1 - 1
src/component/Input/TextAreaApp/TextAreaApp.jsx ファイルの表示

@@ -12,7 +12,7 @@ export const TextAreaApp = props =>
12 12
       onChange={props.onChangeText}
13 13
     />
14 14
 
15
-    <div className={`${props.customClass}__button editionmode__button text-right`}>
15
+    <div className={`${props.customClass}__button editionmode__button`}>
16 16
       <button
17 17
         type='button'
18 18
         className={`${props.customClass}__cancel editionmode__button__cancel btn btn-outline-primary mr-3`}

+ 1 - 1
src/component/Input/TextAreaApp/TextAreaApp.styl ファイルの表示

@@ -1,7 +1,7 @@
1 1
 @import '../../../css/Variable.styl'
2 2
 
3 3
 .editiontitle
4
-  width 60%
4
+  width 300px
5 5
 
6 6
 .editionmode
7 7
   display flex

+ 1 - 1
src/component/PopinFixed/PopinFixedHeader.jsx ファイルの表示

@@ -37,7 +37,7 @@ class PopinFixedHeader extends React.Component {
37 37
 
38 38
         <div className={classnames('wsContentGeneric__header__title mr-auto', `${customClass}__header__title`)}>
39 39
           {this.state.editTitle
40
-            ? <input value={this.state.editTitleValue} onChange={this.onChangeTitle} />
40
+            ? <input className='wsContentGeneric__header__title__editiontitle editiontitle' value={this.state.editTitleValue} onChange={this.onChangeTitle} />
41 41
             : <div>{title}</div>
42 42
           }
43 43
         </div>