scinote-web/app/assets/stylesheets/shared/image_edit_modal.scss
2020-10-25 16:57:50 +01:00

38 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;
}
}