fix(client): remove border from project code (#50968)

This commit is contained in:
a2937 2023-07-19 15:00:24 -04:00 committed by GitHub
parent a6e1af7b97
commit acc06f6ea2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -457,7 +457,6 @@ input:focus {
border-color: var(--tertiary-color);
}
code {
border: 1px solid var(--secondary-color);
padding: 1px 4px;
background-color: var(--quaternary-background);
color: var(--tertiary-color);
@ -466,6 +465,10 @@ code {
overflow-wrap: anywhere;
}
:not(pre) > code {
border: 1px solid var(--secondary-color);
}
.challenge-instructions code {
white-space: break-spaces;
}
@ -561,7 +564,6 @@ hr {
code[class*='language-'],
pre[class*='language-'] {
border-radius: 0;
border: none;
}
pre {