diff --git a/src/App.vue b/src/App.vue
index 07a7acd..0539951 100644
--- a/src/App.vue
+++ b/src/App.vue
@@ -96,7 +96,7 @@ button {
outline: none;
border: none;
- background-color: #0066ff;
+ background-color: #3c5a89;
color: white;
padding: 0.5em 0.5em;
@@ -107,13 +107,26 @@ button {
cursor: pointer;
transition: all 75ms;
+ &:hover:not([data-disabled='true']),
&:focus-visible {
- outline: 1px solid gold;
+ background-color: lighten($color: #3c5a89, $amount: 10%);
+ }
+
+ &[data-disabled='true'] {
+ user-select: none;
+ -moz-user-select: none;
+ -webkit-user-select: none;
+
+ color: #999;
+ }
+
+ &.btn--icon {
+ background-color: transparent;
+ padding: 0;
}
- &:hover,
&:focus-visible {
- background-color: lighten($color: #0066ff, $amount: 10%);
+ outline: 1px solid gold;
}
}
diff --git a/src/components/Changelog.vue b/src/components/Changelog.vue
new file mode 100644
index 0000000..62cebc4
--- /dev/null
+++ b/src/components/Changelog.vue
@@ -0,0 +1,89 @@
+
+ Changelog:
+
+
+
+