Skip to content

Commit

Permalink
adds max height to template variable popup
Browse files Browse the repository at this point in the history
  • Loading branch information
kyleshike committed Dec 28, 2023
1 parent 5d491c2 commit 2813440
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions src/RichTextEditor/TemplateVariable.scss
Original file line number Diff line number Diff line change
@@ -1,21 +1,23 @@
@import '../../scss/theme';

.RichTextEditor__TemplateVariables__Items {
border: 1px solid $synth-div-stroke-neutral;
background-color: $ux-white;
border-radius: $ux-border-radius;
border: 1px solid $synth-div-stroke-neutral;
max-height: 200px;
overflow: auto;
padding: $ux-spacing-20 0;
}

.RichTextEditor__TemplateVariables__Item {
@include synth-font-type-30;
background: $ux-white;
text-align: left;
width: 100%;
border: 0;
outline: 0;
color: $ux-gray-900;
outline: 0;
padding: $ux-spacing-10 $ux-spacing-40;
text-align: left;
width: 100%;
}

.RichTextEditor__TemplateVariables__Item:active,
Expand Down

0 comments on commit 2813440

Please sign in to comment.