diff --git a/src/Console/Console.scss b/src/Console/Console.scss
index d34d11a..676b44b 100644
--- a/src/Console/Console.scss
+++ b/src/Console/Console.scss
@@ -9,7 +9,6 @@
padding: 10px 10px 10px 40px;
background: #fff;
line-height: 20px;
- border-bottom: 1px solid $gray-light;
.icon-ban, .icon-info-circle {
display: inline-block;
color: $gray;
@@ -54,7 +53,6 @@
bottom: 0;
width: 100%;
background: #fff;
- border-top: 1px solid $gray-light;
height: 40px;
.buttons {
display: none;
diff --git a/src/Snippets/Snippets.hbs b/src/Snippets/Snippets.hbs
index 9eeb842..f44a80c 100644
--- a/src/Snippets/Snippets.hbs
+++ b/src/Snippets/Snippets.hbs
@@ -1,9 +1,8 @@
{{#each snippets}}
-
+
{{/each}}
diff --git a/src/Snippets/Snippets.scss b/src/Snippets/Snippets.scss
index a65f5b2..40ec65a 100644
--- a/src/Snippets/Snippets.scss
+++ b/src/Snippets/Snippets.scss
@@ -10,23 +10,25 @@
border-radius: $border-radius;
box-shadow: $box-shadow;
overflow: hidden;
- .btn, .name {
+ cursor: pointer;
+ &:active {
+ .name {
+ background: $gray-dark;
+ }
+ .description {
+ background: $gray-light;
+ }
+ }
+ .name {
padding: $padding;
color: #fff;
background: $gray;
- text-align: center;
- }
- .btn {
- background: $blue;
- cursor: pointer;
transition: background $anim-duration;
}
- .btn:active {
- background: $blue-dark;
- }
.description {
background: #fff;
padding: $padding;
+ transition: background $anim-duration;
}
}
}