Skip to content

Commit

Permalink
Поправил стили
Browse files Browse the repository at this point in the history
  • Loading branch information
YarikMix committed May 14, 2024
1 parent 2690dd2 commit de589fd
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions public/src/components/AddTagMenu/AddTagMenu.sass
Original file line number Diff line number Diff line change
Expand Up @@ -56,13 +56,13 @@
color: $text-secondary-color
font-size: 16px

button
div
width: 28px
height: 28px
outline: none
border: none
border-radius: 5px
background: hsl(210 40% 98%)
background: red
display: flex
justify-content: center
align-items: center
Expand Down
4 changes: 2 additions & 2 deletions public/src/components/AddTagMenu/AddTagMenu.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -87,9 +87,9 @@ export class AddTagMenu extends ScReact.Component<AddTagMenuProps, any> {
</div>
<form className={'add-tag__input-container ' + (this.state.open ? 'open' : '')} ref={ref => this.inputContainerRef = ref} onsubmit={this.handleSubmit}>
<input type="text" placeholder="Добавить тэг" ref={ref => this.inputRef = ref}/>
<button type="submit" onclick={this.handleSubmit}>
<div type="submit" onclick={this.handleSubmit}>
</button>
</div>
</form>
</div>

Expand Down

0 comments on commit de589fd

Please sign in to comment.