change styling of Alert and BanInfo buttons

This commit is contained in:
HF 2022-08-08 14:28:34 +02:00
parent 7d2161883d
commit a0b8ea6a4a
2 changed files with 8 additions and 3 deletions

View File

@ -120,6 +120,7 @@ const BanInfo = ({ close }) => {
<button
type="button"
style={{
fontWeight: 'bold',
animation: 'glowing 1300ms infinite',
}}
onClick={handleSubmit}

View File

@ -519,6 +519,10 @@ tr:nth-child(even) {
z-index: 7;
}
.Alert button {
font-size: 16px;
}
.modaltext, .modalcotext {
color: hsla(0, 0%, 0%, 0.6);
font-size: 14px;
@ -969,9 +973,9 @@ tr:nth-child(even) {
}
@keyframes glowing {
0% { background-color: #2ba805; box-shadow: 0 0 5px #2ba805; }
50% { background-color: #49e819; box-shadow: 0 0 20px #49e819; }
100% { background-color: #2ba805; box-shadow: 0 0 5px #2ba805; }
0% { box-shadow: 0 0 5px #888888; }
50% { box-shadow: 0 0 20px #949494; }
100% { box-shadow: 0 0 5px #242424; }
}