Skip to content

Commit

Permalink
Merge pull request #1479 from ecency/bugfix/emoji-picker-deck
Browse files Browse the repository at this point in the history
Decks: Fixed emojipicker
  • Loading branch information
feruzm authored Oct 9, 2023
2 parents 4bbf508 + 0a34fc1 commit f2a617b
Showing 1 changed file with 11 additions and 15 deletions.
26 changes: 11 additions & 15 deletions src/common/components/decks/deck-threads-form/_index.scss
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,8 @@
min-height: 4.5rem;
box-shadow: none;
cursor: pointer;
overflow: hidden;
overflow-x: hidden;
overflow-y: visible;
border-bottom: 1px solid $border-color;

.editor .editor-control {
Expand Down Expand Up @@ -137,6 +138,10 @@
overflow: hidden;
}

&.inline &-content {
overflow-y: visible;
}

&-body {
display: grid;
grid-template-columns: min-content 1fr;
Expand Down Expand Up @@ -363,20 +368,11 @@
}
}

.emoji-picker-container {
width: 200px;

.emoji-picker {
border: 1px solid $border-color;

@include border-radius(1rem);

@include themify(day) {
background-color: $white;
}
.deck-threads-form-emoji-picker {
position: relative;
z-index: 202;

@include themify(night) {
background-color: $dark-two;
}
.emoji-picker-dialog {
left: -50%;
}
}

0 comments on commit f2a617b

Please sign in to comment.