Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions packages/edit-site/src/components/global-styles/screen-css.js
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ const { useGlobalStyle, AdvancedPanel: StylesAdvancedPanel } = unlock(

function ScreenCSS() {
const description = __(
'Add your own CSS to customize the appearance and layout of your site.'
'You can add custom CSS to further customize the appearance and layout of your site.'
);
const [ style ] = useGlobalStyle( '', undefined, 'user', {
shouldDecodeEncode: false,
Expand All @@ -35,7 +35,7 @@ function ScreenCSS() {
return (
<>
<ScreenHeader
title={ __( 'CSS' ) }
title={ __( 'Additional CSS' ) }
description={
<>
{ description }
Expand Down
12 changes: 1 addition & 11 deletions packages/edit-site/src/components/global-styles/screen-root.js
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ function ScreenRoot() {
* the nav button inset should be looked at before reusing further.
*/
paddingX="13px"
marginBottom={ 4 }
marginBottom={ 2 }
>
{ __(
'Customize the appearance of specific blocks for the whole site.'
Expand All @@ -114,16 +114,6 @@ function ScreenRoot() {
<>
<CardDivider />
<CardBody>
<Spacer
as="p"
paddingTop={ 2 }
paddingX="13px"
marginBottom={ 4 }
>
{ __(
'Add your own CSS to customize the appearance and layout of your site.'
) }
</Spacer>
<ItemGroup>
<NavigationButtonAsItem path="/css">
<HStack justify="space-between">
Expand Down
Loading