Skip to content

Commit

Permalink
Merge pull request #522 from Cretezy/master
Browse files Browse the repository at this point in the history
  • Loading branch information
chhoumann authored Jun 21, 2023
2 parents 263a2c7 + 9ab3ca8 commit f304a44
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 4 deletions.
1 change: 1 addition & 0 deletions src/gui/GenericInputPrompt/GenericInputPrompt.ts
Original file line number Diff line number Diff line change
Expand Up @@ -118,6 +118,7 @@ export default class GenericInputPrompt extends Modal {
buttonBarContainer.style.flexDirection = "row-reverse";
buttonBarContainer.style.justifyContent = "flex-start";
buttonBarContainer.style.marginTop = "1rem";
buttonBarContainer.style.gap = "0.5rem";
}

private submitClickCallback = (evt: MouseEvent) => this.submit();
Expand Down
1 change: 1 addition & 0 deletions src/gui/GenericWideInputPrompt/GenericWideInputPrompt.ts
Original file line number Diff line number Diff line change
Expand Up @@ -118,6 +118,7 @@ export default class GenericWideInputPrompt extends Modal {
buttonBarContainer.style.flexDirection = "row-reverse";
buttonBarContainer.style.justifyContent = "flex-start";
buttonBarContainer.style.marginTop = "1rem";
buttonBarContainer.style.gap = "0.5rem";
}

private submitClickCallback = (evt: MouseEvent) => this.submit();
Expand Down
7 changes: 3 additions & 4 deletions src/gui/choiceList/AddChoiceBox.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,6 @@

<style>
.addChoiceBox {
margin-top: 1em;
display: flex;
flex-direction: row;
align-items: center;
Expand All @@ -49,8 +48,8 @@
}
#addChoiceTypeSelector {
font-size: 16px;
padding: 3px;
border-radius: 3px;
font-size: var(--font-ui-small);
padding: var(--size-4-1) var(--size-4-3);
border-radius: var(--button-radius);
}
</style>
1 change: 1 addition & 0 deletions src/gui/choiceList/ChoiceView.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -318,6 +318,7 @@
align-items: center;
justify-content: space-between;
margin-top: 1rem;
gap: 1rem;
}
@media (max-width: 800px) {
Expand Down

1 comment on commit f304a44

@vercel
Copy link

@vercel vercel bot commented on f304a44 Jun 21, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Successfully deployed to the following URLs:

quickadd – ./

quickadd-chrisbbh.vercel.app
quickadd-git-master-chrisbbh.vercel.app
quickadd.obsidian.guide

Please sign in to comment.