fix(client): fix modal heading CSS for light theme (#40106)

This commit is contained in:
Shaun Hamilton
2020-11-02 13:16:04 +00:00
committed by GitHub
parent 0a2f01c9d8
commit e6b29dcc2c
3 changed files with 11 additions and 11 deletions

View File

@ -436,7 +436,17 @@ pre {
.panel-primary > .panel-heading {
background-color: transparent;
border-color: var(--color-primary);
border-color: var(--primary-color);
color: var(--primary-color);
}
.solution-viewer,
.solution-viewer pre {
margin-bottom: 0px;
}
.solution-viewer {
border-color: var(--primary-color);
}
.has-success .help-block,

View File

@ -3,8 +3,6 @@ import PropTypes from 'prop-types';
import { Panel } from '@freecodecamp/react-bootstrap';
import Prism from 'prismjs';
import './solution-viewer.css';
const prismLang = {
css: 'css',
js: 'javascript',

View File

@ -1,8 +0,0 @@
.solution-viewer,
.solution-viewer pre {
margin-bottom: 0px;
}
.solution-viewer {
border-color: var(--color-primary);
}