Skip to content

Commit

Permalink
update height
Browse files Browse the repository at this point in the history
  • Loading branch information
akashmdiu committed Oct 23, 2024
1 parent d58b333 commit ccd9892
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
2 changes: 1 addition & 1 deletion EmbedPress/Ends/Back/Settings/templates/general.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@

$custom_color = isset($g_settings['custom_color']) ? sanitize_text_field($g_settings['custom_color']) : '#333333';

$enableEmbedResizeHeight = isset($g_settings['enableEmbedResizeHeight']) ? intval($g_settings['enableEmbedResizeHeight']) : 550;
$enableEmbedResizeHeight = isset($g_settings['enableEmbedResizeHeight']) ? intval($g_settings['enableEmbedResizeHeight']) : 600;
$enableEmbedResizeWidth = isset($g_settings['enableEmbedResizeWidth']) ? intval($g_settings['enableEmbedResizeWidth']) : 600;

?>
Expand Down
8 changes: 7 additions & 1 deletion assets/css/admin-notices.css
Original file line number Diff line number Diff line change
Expand Up @@ -251,7 +251,6 @@
div#wpnotice-embedpress-helloween_2024_notice {
border-left-color: #5626E7;
/* border-left-color: #5b4e96; */

}

.wpnotice-content-wrapper .helloween_2024_notice {
Expand All @@ -278,4 +277,11 @@ div#wpnotice-embedpress-helloween_2024_notice {

.wpnotice-content-wrapper {
width: 100%;
}

@media screen and (max-width: 991px) {

div#wpnotice-embedpress-helloween_2024_notice {
display: none!important;
}
}

0 comments on commit ccd9892

Please sign in to comment.