Added save project dialogue

This commit is contained in:
NSSure
2021-08-14 11:20:53 -04:00
parent d97b6f5ca5
commit f9a1cfc3d3
10 changed files with 73 additions and 33 deletions

View File

@ -7,13 +7,4 @@
flex: 1;
}
}
.export-actions {
display: flex;
justify-content: center;
button {
font-size: 18px;
}
}
}

View File

@ -78,7 +78,7 @@
}
}
div.pixel-export {
div.pixel-export, div.save-project {
input {
background: $indent;
border: none;
@ -164,4 +164,13 @@
}
}
}
.popup-actions {
display: flex;
justify-content: center;
button {
font-size: 18px;
}
}
}

10
css/_save-project.scss Normal file
View File

@ -0,0 +1,10 @@
#save-project {
.save-project-configuration {
display: flex;
flex-direction: column;
input {
flex: 1;
}
}
}

View File

@ -15,4 +15,5 @@
@import 'resize-menus';
@import 'palette-editor';
@import 'splash-page';
@import "export";
@import "export";
@import "save-project";