mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2025-03-13 11:35:51 +01:00
Fix sync modal styles (#1945)
Do not overlap the footer. Also removed the underline for the toggle button in chrome. Fixes #1941.
This commit is contained in:
parent
cb337f4a65
commit
ace904cf16
1 changed files with 4 additions and 2 deletions
|
@ -7,7 +7,7 @@
|
|||
<div class="modal-content">
|
||||
<a class="modal-header btn-link border-0 text-decoration-none cursor-pointer align-items-center" data-toggle="collapse" data-target="#syncModalContent">
|
||||
<h4 class="modal-title">Your nodes are synching...</h4>
|
||||
<span class="fa fa-chevron-down" style="font-size:1em;"></span>
|
||||
<span class="fa fa-chevron-down"></span>
|
||||
</a>
|
||||
<div id="syncModalContent" class="collapse show">
|
||||
<div class="modal-body pt-0">
|
||||
|
@ -40,7 +40,7 @@
|
|||
<style type="text/css">
|
||||
#syncModal {
|
||||
position: fixed;
|
||||
bottom: 10px;
|
||||
bottom: 40px;
|
||||
right: 10px;
|
||||
margin: 0;
|
||||
z-index: 1000;
|
||||
|
@ -52,6 +52,8 @@
|
|||
overflow-y: scroll;
|
||||
}
|
||||
#syncModal .fa-chevron-down {
|
||||
font-size: 1em;
|
||||
text-decoration: none;
|
||||
transition: transform .35s;
|
||||
}
|
||||
#syncModal .collapsed .fa-chevron-down {
|
||||
|
|
Loading…
Add table
Reference in a new issue