|
|
@@ -1,6 +1,7 @@
|
|
|
import React from 'react';
|
|
|
import PropTypes from 'prop-types';
|
|
|
import { withTranslation } from 'react-i18next';
|
|
|
+import { Card, CardBody } from 'reactstrap';
|
|
|
|
|
|
import loggerFactory from '@alias/logger';
|
|
|
|
|
|
@@ -51,10 +52,12 @@ class CustomizeCssSetting extends React.Component {
|
|
|
return (
|
|
|
<React.Fragment>
|
|
|
<h2 className="admin-setting-header">{t('customize_page.Custom CSS')}</h2>
|
|
|
- <p className="well">
|
|
|
- { t('customize_page.write_CSS') }<br />
|
|
|
- { t('customize_page.reflect_change') }
|
|
|
- </p>
|
|
|
+ <Card className="card-well my-3">
|
|
|
+ <CardBody>
|
|
|
+ { t('customize_page.write_CSS') }<br />
|
|
|
+ { t('customize_page.reflect_change') }
|
|
|
+ </CardBody>
|
|
|
+ </Card>
|
|
|
<div className="form-group">
|
|
|
<div className="col-xs-12">
|
|
|
<CustomCssEditor
|