mirror of
https://github.com/wassname/talk.git
synced 2026-07-20 12:40:47 +08:00
Fix title styling
This commit is contained in:
@@ -1,3 +1,9 @@
|
||||
.title {
|
||||
color: black;
|
||||
font-size: 1.26em;
|
||||
font-weight: 500;
|
||||
}
|
||||
|
||||
.card {
|
||||
margin-bottom: 20px;
|
||||
align-items: flex-start;
|
||||
|
||||
@@ -49,7 +49,7 @@ class ModerationSettings extends React.Component {
|
||||
|
||||
return (
|
||||
<div>
|
||||
<h3>{t('configure.moderation_settings')}</h3>
|
||||
<h3 className={styles.title}>{t('configure.moderation_settings')}</h3>
|
||||
<Card className={cn(styles.card, settings.requireEmailConfirmation ? on : off)}>
|
||||
<div className={styles.action}>
|
||||
<Checkbox
|
||||
|
||||
@@ -1,3 +1,9 @@
|
||||
.title {
|
||||
color: black;
|
||||
font-size: 1.26em;
|
||||
font-weight: 500;
|
||||
}
|
||||
|
||||
.card {
|
||||
margin-bottom: 20px;
|
||||
align-items: flex-start;
|
||||
|
||||
@@ -106,7 +106,7 @@ class StreamSettings extends React.Component {
|
||||
|
||||
return (
|
||||
<div>
|
||||
<h3>{t('configure.stream_settings')}</h3>
|
||||
<h3 className={styles.title}>{t('configure.stream_settings')}</h3>
|
||||
<Card className={cn(styles.card, settings.charCountEnable ? on : off)}>
|
||||
<div className={styles.action}>
|
||||
<Checkbox
|
||||
|
||||
@@ -1,3 +1,9 @@
|
||||
.title {
|
||||
color: black;
|
||||
font-size: 1.26em;
|
||||
font-weight: 500;
|
||||
}
|
||||
|
||||
.card {
|
||||
margin-bottom: 20px;
|
||||
align-items: flex-start;
|
||||
|
||||
@@ -33,7 +33,7 @@ class TechSettings extends React.Component {
|
||||
const {settings, data, root} = this.props;
|
||||
return (
|
||||
<div>
|
||||
<h3>{t('configure.tech_settings')}</h3>
|
||||
<h3 className={styles.title}>{t('configure.tech_settings')}</h3>
|
||||
<Domainlist
|
||||
domains={settings.domains.whitelist}
|
||||
onChangeDomainlist={this.updateDomainlist} />
|
||||
|
||||
Reference in New Issue
Block a user