-
Notifications
You must be signed in to change notification settings - Fork 54
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* update modal width to 65vw * set the modal size to large * update wp_enqueue_style arguments Co-authored-by: Aki Hamano <54422211+t-hamano@users.noreply.github.com> --------- Co-authored-by: Aki Hamano <54422211+t-hamano@users.noreply.github.com> Co-authored-by: Jason Crist <jcrist@pbking.com> Co-authored-by: Matias Benedetto <matias.benedetto@gmail.com>
- Loading branch information
1 parent
485f893
commit 2c63cdc
Showing
5 changed files
with
45 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
$plugin-prefix: "create-block-theme"; | ||
$modal-footer-height: 70px; | ||
|
||
.#{$plugin-prefix} { | ||
&__metadata-editor-modal { | ||
padding-bottom: $modal-footer-height; | ||
|
||
&__footer { | ||
border-top: 1px solid #ddd; | ||
background-color: #fff; | ||
position: absolute; | ||
bottom: 0; | ||
margin: 0 -32px; | ||
padding: 16px 32px; | ||
height: $modal-footer-height; | ||
} | ||
|
||
&__screenshot { | ||
max-width: 200px; | ||
height: auto; | ||
aspect-ratio: 4 / 3; | ||
object-fit: cover; | ||
} | ||
} | ||
} |