1
0

General UI Improvement (again) (#255)

* Add and fix some stuff

* Add warning when leaving to `mod/create`

* Fix mods/create not working
This commit is contained in:
Johan Novak
2021-06-17 22:03:12 -07:00
committed by GitHub
parent 566833da6e
commit 5859ac7a58
9 changed files with 114 additions and 22 deletions
+8 -3
View File
@@ -60,7 +60,7 @@
<a
v-if="primaryFile"
:href="primaryFile.url"
class="action iconified-button"
class="action iconified-button download"
@click.prevent="
$parent.downloadFile(primaryFile.hashes.sha1, primaryFile.url)
"
@@ -333,6 +333,13 @@ export default {
margin: 0 0 0 0.5rem;
}
}
.download {
background-color: var(--color-brand);
color: white;
&:hover {
background-color: var(--color-brand-hover);
}
}
}
.markdown-body {
@@ -408,8 +415,6 @@ export default {
svg {
padding: 0.25rem;
border-radius: 50%;
background-color: var(--color-button-bg);
}
}
}