fix(UI): prevent blank cutoffs (#55222)

This commit is contained in:
Anna
2024-06-20 01:58:46 -04:00
committed by GitHub
parent daede0a8ff
commit ee26d4333c
@@ -11,7 +11,8 @@
.fill-in-the-blank-wrap > p {
margin: 0;
font-size: 1.25em;
font-size: 1.25rem;
line-height: 1.5;
}
.fill-in-the-blank-input {
@@ -20,7 +21,7 @@
background-color: var(--primary-background);
border-radius: 0;
overflow-wrap: anywhere;
line-height: 1.5rem;
line-height: 1.5;
z-index: 1;
position: relative;
border-left: none;
@@ -30,6 +31,10 @@
border-bottom-color: var(--gray-45) !important;
}
.fill-in-the-blank-input:focus {
z-index: 2;
}
.code-tag code {
font-size: 100%;
z-index: 0;