Close button

This commit is contained in:
2022-02-05 00:31:04 +01:00
parent 65e290b160
commit 4ba79f63d0
2 changed files with 31 additions and 9 deletions

View File

@ -17,4 +17,30 @@
padding: 20px;
border-radius: 20px;
overflow-y: auto;
position: relative;
}
.modalClose {
float: right;
position: relative;
background: #555;
border-radius: 50%;
width: 2em;
height: 2em;
font-family: sans-serif;
margin-bottom: -20px;
z-index: 100;
/*text-align: center;*/
/*padding: auto 0;*/
}
.modalCloseAlign {
margin: 0;
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
display: block;
color: #fff;
text-decoration: none;
}