Skip to content

Commit

Permalink
Cleanup node classes
Browse files Browse the repository at this point in the history
  • Loading branch information
euvl committed Apr 25, 2019
1 parent 9201118 commit 51ed22b
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 10 deletions.
6 changes: 3 additions & 3 deletions dist/index.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions dist/ssr.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 4 additions & 4 deletions src/Notifications.vue
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<template>
<div
class="notifications"
class="vue-notification-group"
:style="styles"
>
<component
Expand All @@ -12,7 +12,7 @@
>
<div
v-for="item in active"
class="notification-wrapper"
class="vue-notification-wrapper"
:style="notifyWrapperStyle(item)"
:key="item.id"
:data-id="item.id"
Expand Down Expand Up @@ -348,13 +348,13 @@ const Component = {
export default Component
</script>
<style>
.notifications {
.vue-notification-group {
display: block;
position: fixed;
z-index: 5000;
}
.notification-wrapper {
.vue-notification-wrapper {
display: block;
overflow: hidden;
width: 100%;
Expand Down

0 comments on commit 51ed22b

Please sign in to comment.