1
0
mirror of https://github.com/haiwen/seahub.git synced 2025-09-15 06:44:16 +00:00

change empty tip title margin (#6614)

fix other css format
This commit is contained in:
Michael An
2024-08-22 14:59:00 +08:00
committed by GitHub
parent 316e403202
commit 63e64f83df
19 changed files with 345 additions and 322 deletions

View File

@@ -308,8 +308,8 @@ class Wikis extends Component {
{(!this.state.loading && this.state.wikis.length === 0 && this.state.groupWikis.length === 0) &&
<div className="cur-view-content">
<EmptyTip title={gettext('No Wikis')}>
<p>{gettext('You do not have any wikis yet.')}</p>
<p>{gettext('You can add a wiki by clicking the "Add Wiki" button in the menu.')}</p>
<p className="empty-tip-text">{gettext('You do not have any wikis yet.')}</p>
<p className="empty-tip-text">{gettext('You can add a wiki by clicking the "Add Wiki" button in the menu.')}</p>
</EmptyTip>
</div>
}