Position modals at the bottom when on mobile. #646
This commit is contained in:
parent
1dad492810
commit
9390c0616c
|
@ -989,6 +989,9 @@ export default {
|
|||
.label-details {
|
||||
font-weight: normal;
|
||||
color: var(--tainacan-gray3);
|
||||
text-overflow: ellipsis;
|
||||
white-space: nowrap;
|
||||
overflow: hidden;
|
||||
}
|
||||
.not-saved {
|
||||
font-style: italic;
|
||||
|
@ -1153,6 +1156,9 @@ export default {
|
|||
.label-details {
|
||||
font-weight: normal;
|
||||
color: var(--tainacan-gray3);
|
||||
text-overflow: ellipsis;
|
||||
white-space: nowrap;
|
||||
overflow: hidden;
|
||||
}
|
||||
}
|
||||
.sortable-drag {
|
||||
|
|
|
@ -876,6 +876,9 @@ export default {
|
|||
.label-details {
|
||||
font-weight: normal;
|
||||
color: var(--tainacan-gray3);
|
||||
text-overflow: ellipsis;
|
||||
white-space: nowrap;
|
||||
overflow: hidden;
|
||||
}
|
||||
.not-saved {
|
||||
font-style: italic;
|
||||
|
|
|
@ -1,4 +1,11 @@
|
|||
// Tainacan modals
|
||||
.tainacan-modal.is-active {
|
||||
justify-content: center;
|
||||
|
||||
@media screen and (max-width: 769px) {
|
||||
justify-content: flex-end;
|
||||
}
|
||||
}
|
||||
.tainacan-modal .animation-content {
|
||||
background: none;
|
||||
width: calc(100% - (2 * var(--tainacan-one-column)));
|
||||
|
|
Loading…
Reference in New Issue