Skip to content

Commit

Permalink
responsive fix
Browse files Browse the repository at this point in the history
  • Loading branch information
victorandeloci committed Feb 17, 2022
1 parent db391de commit 6d0dba1
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
8 changes: 4 additions & 4 deletions css/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -51,14 +51,14 @@
#attachmentDialog {
position: fixed;
width: 50%;
height: 50vh;
top: 25%;
height: 60vh;
top: 20%;
left: 25%;
z-index: 999;
z-index: 1001;
background-color: var(--background);
box-shadow: 5px 5px 12px #444;
border-radius: 1rem;
overflow: hidden;
overflow: auto;
display: none;
padding: 0 1rem;
}
Expand Down
2 changes: 1 addition & 1 deletion css/style.min.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions wordpress-post-pdf-files.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
* Plugin Name: PDF Attachments for WordPress Posts & Pages
* Plugin URI: https://github.com/ValkyriaTech/wordpress-post-pdf-files/
* Description:
* Version: 2.1.2
* Version: 2.1.3
* Author: ValkyriaTech
* Author URI: https://github.com/ValkyriaTech
* License: GPLv3
Expand All @@ -24,7 +24,7 @@ function loadPdfFilesBox() {
'main',
plugin_dir_url(__FILE__) . 'js/main.min.js',
null,
'2.1.2'
'2.1.3'
);

wp_enqueue_style(
Expand All @@ -47,7 +47,7 @@ function loadPdfFilesBox() {
'style',
plugin_dir_url(__FILE__) . 'css/style.min.css',
null,
'2.1.2',
'2.1.3',
'screen'
);

Expand Down

0 comments on commit 6d0dba1

Please sign in to comment.