Skip to content

Commit

Permalink
[not verified] Rebase with master
Browse files Browse the repository at this point in the history
  • Loading branch information
allilevine committed Sep 27, 2021
1 parent 0df31d5 commit bbf18b7
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 17 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,8 @@
.components-publicize-icon__picture {
display: grid;

img {
img,
.placeholder {
border-radius: 50%;
width: 30px;
height: 30px;
Expand All @@ -31,11 +32,7 @@

.placeholder {
display: block;
background-color: rgb( 168, 190, 206 );
border-radius: 50%;
width: 30px;
height: 30px;
grid-area: 1 / 1 / 2 / 2;
background-color: #a8bece;
}

svg {
Expand All @@ -44,8 +41,8 @@
grid-area: 1 / 1 / 2 / 2;
margin-top: 18px;
margin-left: 18px;
border: 1px solid white;
border-radius: 1px;
background-color: white;
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ import { get, isEqual } from 'lodash';
import { select } from '@wordpress/data';
import { __ } from '@wordpress/i18n';
import createSelector from 'rememo';
import { store as editorStore } from '@wordpress/editor';

/**
* Internal dependencies
Expand Down Expand Up @@ -265,16 +266,6 @@ export function getShareMessage() {
return '';
}

/**
* Get the connections
*
* @param {object} state - State object.
* @returns {Array} The connections.
*/
export function getConnections( state ) {
return state.connections;
}

/**
* Get the maximum length that a share message can be.
*
Expand Down

0 comments on commit bbf18b7

Please sign in to comment.