-
Notifications
You must be signed in to change notification settings - Fork 39
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
fix(webapp): update embeds.vue #7953
base: master
Are you sure you want to change the base?
Conversation
I add a margin in between the 2 buttons.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks for your contribution @Dibyajyoti1515 !
I have some questions. 🤗
PS: Please run yarn lint --fix
in the webapp folder.
@@ -17,7 +17,7 @@ | |||
<ds-text> | |||
{{ $t('settings.embeds.status.change.question') }} | |||
</ds-text> | |||
<base-button @click="submit" :filled="!disabled" :disabled="!disabled"> | |||
<base-button @click="submit" :filled="!disabled" :disabled="!disabled" style="margin-right: 5px;"> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is a great idea!
Would love to have this via a class rather than by a style attribute, because CSS classes are recommended in such cases.
Or as ds-space
element like done in other places which is standardized.
The issue pointed to the space between the buttons to the text underneath which appears to small.
This should be solved as well by an CSS class, if you agree.
Or as ds-space
element like done in other places which is standardized.
@@ -54,6 +54,7 @@ export default { | |||
data() { | |||
return { | |||
disabled: null, | |||
print: true, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why you add this and never use it.
I add a margin in between the 2 buttons.
🍰 Pullrequest
Issues
Todo