mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2024-11-11 18:21:04 +08:00
37 lines
531 B
SCSS
37 lines
531 B
SCSS
// Image edit modal
|
|
.modal-file-edit {
|
|
background: transparent;
|
|
font-size: $font-size-base;
|
|
padding: 0 !important;
|
|
|
|
.modal-dialog {
|
|
height: 100%;
|
|
margin: 0;
|
|
width: auto;
|
|
}
|
|
|
|
.modal-content {
|
|
border: 0;
|
|
height: 100%;
|
|
}
|
|
|
|
.modal-header {
|
|
align-items: center;
|
|
background: $color-white;
|
|
display: flex;
|
|
height: 4em;
|
|
padding: 0 1em;
|
|
|
|
.file-name {
|
|
font-weight: bold;
|
|
margin-right: auto;
|
|
}
|
|
}
|
|
|
|
.modal-body {
|
|
height: calc(100% - 4em);
|
|
padding: 0;
|
|
}
|
|
}
|
|
|
|
|