Skip to content

Commit

Permalink
ConnectScreen: make button full width on small screens (#21683)
Browse files Browse the repository at this point in the history
  • Loading branch information
monsieur-z authored Nov 25, 2021
1 parent 357f504 commit 28b3cbc
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
Significance: patch
Type: fixed

ConnectScreen: make button full width on small viewports
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
@import '@wordpress/base-styles/mixins';

.jp-connection__connect-screen {

&__loading {
display: none;
}
Expand All @@ -19,7 +18,12 @@
max-width: 100%;

&:disabled {
color: hsla(0,0%,100%,.4);
color: hsla( 0, 0%, 100%, 0.4 );
}

@media ( max-width: $break-medium ) {
max-width: none;
width: 100%;
}
}
}
Expand Down

0 comments on commit 28b3cbc

Please sign in to comment.