diff --git a/src/components/ImageCollection.vue b/src/components/ImageCollection.vue new file mode 100644 index 0000000..2aeb419 --- /dev/null +++ b/src/components/ImageCollection.vue @@ -0,0 +1,42 @@ + + + + + \ No newline at end of file diff --git a/src/components/ImageEditor.vue b/src/components/ImageEditor.vue index 4634a43..ae446cb 100644 --- a/src/components/ImageEditor.vue +++ b/src/components/ImageEditor.vue @@ -1,6 +1,7 @@ + + diff --git a/src/style.css b/src/style.css index bb131d6..c6b102b 100644 --- a/src/style.css +++ b/src/style.css @@ -35,22 +35,27 @@ h1 { line-height: 1.1; } -button { +button, .button { border-radius: 8px; border: 1px solid transparent; padding: 0.6em 1.2em; + margin-bottom: 8px; font-size: 1em; font-weight: 500; font-family: inherit; background-color: #1a1a1a; cursor: pointer; transition: border-color 0.25s; + color: inherit; + text-decoration: none; } -button:hover { +button:hover, .button:hover { border-color: #646cff; } button:focus, -button:focus-visible { +button:focus-visible, +.button:focus, +.button:focus-visible { outline: 4px auto -webkit-focus-ring-color; }