fix(client): a2 spacing for blanks (#55446)

This commit is contained in:
Lasse Jørgensen
2024-07-09 07:18:40 +02:00
committed by GitHub
parent eab495ffbd
commit 422b9b2619
2 changed files with 2 additions and 5 deletions
@@ -16,6 +16,7 @@
}
.fill-in-the-blank-input {
font-family: monospace;
padding: 0;
text-align: center;
background-color: var(--primary-background);
@@ -367,11 +367,7 @@ class ShowFillInTheBlank extends Component<
)}`}
onChange={this.handleInputChange}
data-index={node.value}
style={{
width: `${
blankAnswers[node.value].length * 11 + 11
}px`
}}
size={blankAnswers[node.value].length}
aria-label={t('learn.blank')}
/>
);