Skip to content

Commit ec25255

Browse files
gmjuhaszmatticbot
authored andcommitted
Social: Move Mastodon form input direction (#41986)
* Move Mastodon input form to the left * changelog Committed via a GitHub action: https://github.com/Automattic/jetpack/actions/runs/13539996898 Upstream-Ref: Automattic/jetpack@c1c3c2b
1 parent f59be56 commit ec25255

File tree

4 files changed

+11
-4
lines changed

4 files changed

+11
-4
lines changed

CHANGELOG.md

+5-2
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,13 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/)
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8-
## [0.79.1-alpha] - unreleased
8+
## [0.80.0-alpha] - unreleased
99

1010
This is an alpha version! The changes listed here are not final.
1111

12+
### Security
13+
- Social: Moved Mastodon input form to start
14+
1215
### Changed
1316
- Social | Improve connect URL generation
1417

@@ -1112,7 +1115,7 @@ This is an alpha version! The changes listed here are not final.
11121115
### Changed
11131116
- Updated package dependencies. [#24470]
11141117

1115-
[0.79.1-alpha]: https://github.com/Automattic/jetpack-publicize-components/compare/v0.79.0...v0.79.1-alpha
1118+
[0.80.0-alpha]: https://github.com/Automattic/jetpack-publicize-components/compare/v0.79.0...v0.80.0-alpha
11161119
[0.79.0]: https://github.com/Automattic/jetpack-publicize-components/compare/v0.78.0...v0.79.0
11171120
[0.78.0]: https://github.com/Automattic/jetpack-publicize-components/compare/v0.77.2...v0.78.0
11181121
[0.77.2]: https://github.com/Automattic/jetpack-publicize-components/compare/v0.77.1...v0.77.2

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"private": true,
33
"name": "@automattic/jetpack-publicize-components",
4-
"version": "0.79.1-alpha",
4+
"version": "0.80.0-alpha",
55
"description": "A library of JS components required by the Publicize editor plugin",
66
"homepage": "https://github.com/Automattic/jetpack/tree/HEAD/projects/js-packages/publicize-components/#readme",
77
"bugs": {

src/components/services/connect-form.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ export function ConnectForm( {
8585
onSubmit={ onSubmitForm }
8686
>
8787
{ displayInputs ? (
88-
<div className={ styles[ 'fields-wrapper' ] }>
88+
<div className={ clsx( styles[ 'fields-wrapper' ], styles.input ) }>
8989
<CustomInputs service={ service } />
9090
</div>
9191
) : null }

src/components/services/style.module.scss

+4
Original file line numberDiff line numberDiff line change
@@ -204,6 +204,10 @@
204204
width: 100%;
205205
gap: 1rem;
206206

207+
&.input {
208+
justify-content: flex-start;
209+
}
210+
207211
@include break-medium {
208212
flex-direction: row;
209213
}

0 commit comments

Comments
 (0)