0
Fork 0
mirror of https://github.com/TryGhost/Ghost.git synced 2025-02-17 23:44:39 -05:00

Updated site title size and alignment

This commit is contained in:
Peter Zimon 2020-09-11 14:08:24 +02:00
parent 47ceb55c5e
commit bd4fc4e867
2 changed files with 7 additions and 1 deletions

View file

@ -81,7 +81,14 @@ const GlobalStyles = `
} }
.gh-portal-main-title { .gh-portal-main-title {
text-align: center;
color: var(--grey1); color: var(--grey1);
margin: 24px 0 12px;
padding: 0 12px;
}
.gh-portal-signup-logo + .gh-portal-main-title {
margin-top: 4px;
} }
.gh-portal-text-disabled { .gh-portal-text-disabled {

View file

@ -4,7 +4,6 @@ import {hasMode} from '../utils/check-mode';
import AppContext from '../AppContext'; import AppContext from '../AppContext';
import FrameStyle from './Frame.styles'; import FrameStyle from './Frame.styles';
import Pages, {getActivePage} from '../pages'; import Pages, {getActivePage} from '../pages';
import {getSitePlans} from '../utils/helpers';
const React = require('react'); const React = require('react');