Skip to content

Commit

Permalink
Implement metadata editor redesign
Browse files Browse the repository at this point in the history
  • Loading branch information
gordlin committed Sep 27, 2024
1 parent d7f5346 commit f516afa
Show file tree
Hide file tree
Showing 5 changed files with 502 additions and 260 deletions.
2 changes: 1 addition & 1 deletion src/app.vue
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ export default class App extends Vue {
</script>

<style lang="scss">
$font-list: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
$font-list: 'Segoe UI', system-ui, ui-sans-serif, Tahoma, Geneva, Verdana, sans-serif;
.ovwContainer .layerTile {
max-width: initial;
Expand Down
8 changes: 7 additions & 1 deletion src/components/editor.vue
Original file line number Diff line number Diff line change
Expand Up @@ -372,10 +372,11 @@ export default class EditorV extends Vue {
}
.editor-input {
padding: 5px 10px;
padding: 10px 10px;
margin-top: 5px;
border: 1px solid black;
display: inline;
border-radius: 5px;
}
.editor-container .input-error {
Expand All @@ -389,6 +390,11 @@ export default class EditorV extends Vue {
transition-duration: 0.2s;
}
.editor-forms-button {
padding: 11px 15px;
border-radius: 5px;
}
.editor-button:hover:enabled {
background-color: #dbdbdb;
color: black;
Expand Down
Loading

0 comments on commit f516afa

Please sign in to comment.