Added export dialogue for file name

This commit is contained in:
NSSure
2021-08-12 22:54:35 -04:00
parent 12ddba3924
commit d97b6f5ca5
8 changed files with 120 additions and 54 deletions

19
css/_export.scss Normal file
View File

@@ -0,0 +1,19 @@
#export {
.export-configuration {
display: flex;
flex-direction: column;
input {
flex: 1;
}
}
.export-actions {
display: flex;
justify-content: center;
button {
font-size: 18px;
}
}
}

View File

@@ -77,6 +77,18 @@
text-align: center;
}
}
div.pixel-export {
input {
background: $indent;
border: none;
border-radius: 4px;
color: $indenttext;
padding: 10px 20px;
margin: 0;
text-align: left;
}
}
/*
input {
background: $indent;

View File

@@ -14,4 +14,5 @@
@import 'compatibility';
@import 'resize-menus';
@import 'palette-editor';
@import 'splash-page';
@import 'splash-page';
@import "export";