1
0
mirror of https://github.com/RSS-Bridge/rss-bridge.git synced 2025-08-02 14:47:35 +02:00

[BridgeCard] Fix parameter layout issue (#1816)

Fixes parameter layout issue on small screens.
This commit is contained in:
Joseph
2020-10-26 07:11:58 +00:00
committed by GitHub
parent 2714c3d816
commit 164b407f28
2 changed files with 2 additions and 2 deletions

View File

@@ -126,7 +126,7 @@ This bridge is not fetching its content through a secure connection</div>';
if(isset($inputEntry['title']))
$form .= '<i class="info" title="' . filter_var($inputEntry['title'], FILTER_SANITIZE_STRING) . '">i</i>';
else
$form .= '<i></i>';
$form .= '<i class="no-info"></i>';
}
$form .= '</div>';

View File

@@ -360,7 +360,7 @@ h5 {
margin: 3px auto 0;
}
.info {
.info, .no-info {
display: none;
}