feat: ability to rename fits and save them in the browser (#49)
This commit is contained in:
33
src/ModalDialog/ModalDialog.module.css
Normal file
33
src/ModalDialog/ModalDialog.module.css
Normal file
@@ -0,0 +1,33 @@
|
||||
.modalDialog {
|
||||
bottom: 0px;
|
||||
background-color: rgba(200, 200, 200, 0.3);
|
||||
left: 0px;
|
||||
margin: 0 auto;
|
||||
position: absolute;
|
||||
right: 0px;
|
||||
text-align: center;
|
||||
top: 0px;
|
||||
z-index: 100;
|
||||
}
|
||||
.modalDialog:before {
|
||||
content: "";
|
||||
display: inline-block;
|
||||
height: 100%;
|
||||
vertical-align: middle;
|
||||
}
|
||||
|
||||
.content {
|
||||
background-color: #111111;
|
||||
border: 1px solid #303030;
|
||||
border-radius: 7px;
|
||||
color: #c5c5c5;
|
||||
display: inline-block;
|
||||
padding: 10px;
|
||||
text-align: left;
|
||||
vertical-align: middle;
|
||||
}
|
||||
|
||||
.header {
|
||||
font-size: 24px;
|
||||
margin-bottom: 10px;
|
||||
}
|
||||
Reference in New Issue
Block a user