Add ui for answers from source
This commit is contained in:
32
web/src/css/components/Modal.scss
Normal file
32
web/src/css/components/Modal.scss
Normal file
@@ -0,0 +1,32 @@
|
||||
.modal {
|
||||
position: fixed;
|
||||
left: 0;
|
||||
top: 0;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
background-color: rgba(37, 37, 37, .7);
|
||||
z-index: 1;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
.modal-content {
|
||||
color: black;
|
||||
padding: 20px;
|
||||
padding-bottom: 0px;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
align-items: flex-start;
|
||||
height: auto;
|
||||
background-color: #FFF;
|
||||
min-width: 500px;
|
||||
.actions {
|
||||
border-top: 1px solid #bebebe;
|
||||
width: 100%;
|
||||
display: flex;
|
||||
justify-content: flex-end;
|
||||
min-width: 500px;
|
||||
margin: 0 -20px;
|
||||
padding: 10px;
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user