-
Notifications
You must be signed in to change notification settings - Fork 21
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Avoid avoid wordbazzar errors adn fix css
fix lint: Expected newline after "," fix lint backendFetchSilent to avoid wordbazzar errors backendFetchSilent common button for popups condition for net::ERR_CONNECTION_REFUSED avoid worbazzar responce error handling Update src/components/Button.vue Co-authored-by: Denis Davidyuk <denis_davidyuk@hotmail.com> remove js from button fix modal css
- Loading branch information
Yury Shapkarin
committed
Mar 19, 2021
1 parent
d516b05
commit fe9707c
Showing
7 changed files
with
92 additions
and
117 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
<template> | ||
<button | ||
class="button" | ||
v-bind="$attrs" | ||
v-on="$listeners" | ||
> | ||
<slot /> | ||
</button> | ||
</template> | ||
|
||
<style lang="scss" scoped> | ||
.button { | ||
background-color: $secondary_color; | ||
border: none; | ||
border-radius: 0.25rem; | ||
color: $standard_font_color; | ||
font-size: 0.75rem; | ||
font-weight: 700; | ||
justify-self: center; | ||
line-height: 1.125; | ||
padding: 0.65rem 1.3rem; | ||
&[disabled] { | ||
cursor: not-allowed; | ||
} | ||
} | ||
</style> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters