
* Redisign idea * Code cleanup * Fixed to right container * Reoredered layout * Reordering panels * Export dialog * Removed redunant code * Fixed not removing temp canvas * Fixed preview not using only selected elements * Returned file name on export * Toggle export selected/all elements * Hide copy to clipboard button if no support of clipboard * Added border to swatches * Fixed modal flickering
30 lines
449 B
CSS
30 lines
449 B
CSS
.Modal {
|
|
position: fixed;
|
|
top: 0;
|
|
left: 0;
|
|
right: 0;
|
|
bottom: 0;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
overflow: auto;
|
|
padding: calc(var(--space-factor) * 10);
|
|
}
|
|
|
|
.Modal__background {
|
|
position: fixed;
|
|
top: 0;
|
|
left: 0;
|
|
right: 0;
|
|
bottom: 0;
|
|
z-index: 1;
|
|
background-color: rgba(0, 0, 0, 0.3);
|
|
backdrop-filter: blur(2px);
|
|
}
|
|
|
|
.Modal__content {
|
|
position: relative;
|
|
z-index: 2;
|
|
width: 100%;
|
|
}
|