Skip to content

Commit

Permalink
More
Browse files Browse the repository at this point in the history
  • Loading branch information
officiallygod committed Oct 10, 2024
1 parent 7093f12 commit f5a783c
Show file tree
Hide file tree
Showing 5 changed files with 23 additions and 115 deletions.
1 change: 0 additions & 1 deletion includes/WPAdmin/Listeners/InstallerListener.php
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,6 @@ public function enqueue_installer_script() {
'before'
);


wp_enqueue_script( 'nfd-installer-enqueue' );
wp_enqueue_style( 'nfd-installer-enqueue' );
}
Expand Down
34 changes: 18 additions & 16 deletions src/Installer/components/Modal/stylesheet.scss
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
.nfd-installer-modal {
top: 0;
left: 0;
left: 0;
z-index: 99;
width: 100vw;
height: 100vh;
display: flex;
position: fixed;
align-items: center;
justify-content: center;
background: rgba(0, 0, 0, 0.5);

&__content{
width: 100vw;
height: 100vh;
display: flex;
position: fixed;
align-items: center;
justify-content: center;
background: rgba(0, 0, 0, 0.5);

&__content {
width: 400px;
padding: 20px;
position: relative;
Expand Down Expand Up @@ -54,10 +54,12 @@
}

@keyframes spin {
0% {
transform: rotate(0deg);
}
100% {
transform: rotate(360deg);
}

0% {
transform: rotate(0deg);
}

100% {
transform: rotate(360deg);
}
}
10 changes: 5 additions & 5 deletions src/Installer/styles/app.scss
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
* {
margin: 0;
padding: 0;
box-sizing: border-box;
margin: 0;
padding: 0;
box-sizing: border-box;
}

body {
font-family: Arial, sans-serif;
background-color: #f4f4f4;
font-family: Arial, sans-serif;
background-color: #f4f4f4;
}

//Imports
Expand Down
72 changes: 0 additions & 72 deletions src/Scripts/installPremiumModal.css

This file was deleted.

21 changes: 0 additions & 21 deletions src/Scripts/installPremiumModal.html

This file was deleted.

0 comments on commit f5a783c

Please sign in to comment.