Create modal component; Change the fieldset class to remove window. Other little changes...
This commit is contained in:
23
src/components/modal.scss
Normal file
23
src/components/modal.scss
Normal file
@@ -0,0 +1,23 @@
|
||||
.tui-modal {
|
||||
position: absolute;
|
||||
left: 0px;
|
||||
right: 0px;
|
||||
top: 100px;
|
||||
z-index: 101;
|
||||
display: none;
|
||||
&.active {
|
||||
display: block !important;
|
||||
}
|
||||
}
|
||||
.tui-overlap {
|
||||
position: absolute;
|
||||
top: 0px;
|
||||
left: 0px;
|
||||
right: 0px;
|
||||
bottom: 0px;
|
||||
z-index: 100;
|
||||
display: none;
|
||||
&.active {
|
||||
display: block !important;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user