Skip to content

Commit

Permalink
Update assets
Browse files Browse the repository at this point in the history
  • Loading branch information
TorbenLundsgaard committed Mar 8, 2024
1 parent 2a6d1f1 commit 3fcea28
Show file tree
Hide file tree
Showing 8 changed files with 47 additions and 34 deletions.
2 changes: 1 addition & 1 deletion assets/admin/settings.asset.php
Original file line number Diff line number Diff line change
@@ -1 +1 @@
<?php return array('dependencies' => array('lodash', 'react', 'react-dom', 'wp-api-fetch', 'wp-components', 'wp-element', 'wp-i18n'), 'version' => 'f2be2b3e6277da2304eb');
<?php return array('dependencies' => array('lodash', 'react', 'react-dom', 'wp-api-fetch', 'wp-components', 'wp-element', 'wp-i18n'), 'version' => 'abe3b7caed39d37c83e8');
2 changes: 1 addition & 1 deletion assets/admin/settings.css

Large diffs are not rendered by default.

14 changes: 13 additions & 1 deletion assets/admin/settings.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion assets/admin/wizard.asset.php
Original file line number Diff line number Diff line change
@@ -1 +1 @@
<?php return array('dependencies' => array('lodash', 'react', 'react-dom', 'wp-api-fetch', 'wp-components', 'wp-element', 'wp-i18n'), 'version' => 'fa4589566d6a7e354484');
<?php return array('dependencies' => array('lodash', 'react', 'react-dom', 'wp-api-fetch', 'wp-components', 'wp-element', 'wp-i18n'), 'version' => '06a65e9ee5547f00712d');
2 changes: 1 addition & 1 deletion assets/admin/wizard.css

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion assets/admin/wizard.js

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions src/Admin/IntegrationsOptionsPage.php
Original file line number Diff line number Diff line change
Expand Up @@ -108,6 +108,7 @@ public function localize_script( string $page_slug, string $script_handle ): voi
'currentPage' => $page_slug,
'root' => \esc_url_raw( rest_url() ),
'nonce' => \wp_create_nonce( 'wp_rest' ),
'wa' => true,
'dashboardUrl' => \menu_page_url( 'gtmkit_general', false ),
'integrationsUrl' => \menu_page_url( 'gtmkit_integrations', false ),
'pluginInstallUrl' => $admin_url . 'plugin-install.php?tab=search&type=term&s=',
Expand Down
56 changes: 28 additions & 28 deletions src/scss/_tailwind-compiled.scss
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
! tailwindcss v3.3.2 | MIT License | https://tailwindcss.com
! tailwindcss v3.3.6 | MIT License | https://tailwindcss.com
*/

/*
Expand Down Expand Up @@ -121,8 +121,10 @@ strong {
}

/*
1. Use the user's configured `mono` font family by default.
2. Correct the odd `em` font sizing in all browsers.
1. Use the user's configured `mono` font-family by default.
2. Use the user's configured `mono` font-feature-settings by default.
3. Use the user's configured `mono` font-variation-settings by default.
4. Correct the odd `em` font sizing in all browsers.
*/

code,
Expand All @@ -131,8 +133,12 @@ samp,
pre {
font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
/* 1 */
font-size: 1em;
font-feature-settings: normal;
/* 2 */
font-variation-settings: normal;
/* 3 */
font-size: 1em;
/* 4 */
}

/*
Expand Down Expand Up @@ -191,6 +197,10 @@ select,
textarea {
font-family: inherit;
/* 1 */
font-feature-settings: inherit;
/* 1 */
font-variation-settings: inherit;
/* 1 */
font-size: 100%;
/* 1 */
font-weight: inherit;
Expand Down Expand Up @@ -341,6 +351,14 @@ menu {
padding: 0;
}

/*
Reset default styling for dialogs.
*/

dialog {
padding: 0;
}

/*
Prevent resizing textareas horizontally by default.
*/
Expand Down Expand Up @@ -622,8 +640,12 @@ video {
margin-top: 1rem !important;
}

.gtmkit-mb-1 {
margin-bottom: 0.25rem;
.gtmkit-mb-0 {
margin-bottom: 0px;
}

.gtmkit-mb-0\.5 {
margin-bottom: 0.125rem;
}

.gtmkit-mb-12 {
Expand Down Expand Up @@ -690,14 +712,6 @@ video {
margin-top: 2rem;
}

.gtmkit-mb-0 {
margin-bottom: 0px;
}

.gtmkit-mb-0\.5 {
margin-bottom: 0.125rem;
}

.gtmkit-block {
display: block;
}
Expand Down Expand Up @@ -1267,18 +1281,10 @@ video {
}

@media (min-width: 1024px) {
.lg\:gtmkit-flex {
display: flex;
}

.lg\:gtmkit-grid {
display: grid;
}

.lg\:gtmkit-w-1\/2 {
width: 50%;
}

.lg\:gtmkit-grid-cols-2 {
grid-template-columns: repeat(2, minmax(0, 1fr));
}
Expand All @@ -1293,9 +1299,3 @@ video {
grid-template-columns: repeat(3, minmax(0, 1fr));
}
}

@media (min-width: 1536px) {
.\32xl\:gtmkit-w-1\/3 {
width: 33.333333%;
}
}

0 comments on commit 3fcea28

Please sign in to comment.