Compile CSS and JS

This commit is contained in:
Keegan Rankin 2024-10-03 14:02:15 -07:00
parent e3da49fcbc
commit f6b9ec0b0d
2 changed files with 3 additions and 1 deletions

View file

@ -7142,6 +7142,8 @@ label.panel-block {
iframe { iframe {
width: 100%; width: 100%;
height: 100%; } height: 100%; }
iframe.mastodon-embed {
height: revert-layer; }
/* All classes that are mostly about adding color. */ /* All classes that are mostly about adding color. */
.background-replacement-for-no-image { .background-replacement-for-no-image {

View file

@ -8,7 +8,7 @@
'use strict'; 'use strict';
// Find all iframes // Find all iframes
var $iframes = $( "iframe" ); var $iframes = $( "iframe" ).not(".mastodon-embed");
// Find and save the aspect ratio for all iframes // Find and save the aspect ratio for all iframes
$iframes.each(function () { $iframes.each(function () {