diff --git a/client/assets/styles/instance.css b/client/assets/styles/instance.css
index cb58bbce..7340377f 100644
--- a/client/assets/styles/instance.css
+++ b/client/assets/styles/instance.css
@@ -312,20 +312,6 @@
border: 2px solid #222;
}
-.equip .highlight {
- animation: equip-bg 1s infinite ease-in-out alternate;
-}
-
-@keyframes equip-bg {
- 0% {
- background-color: black;
- }
-
- 100% {
- background-color: #181818;
- }
-}
-
.equip .skills button {
color: whitesmoke;
font-size: 1em;
@@ -347,7 +333,7 @@
height: 2px;
transform-origin: center;
background-color: whitesmoke;
- animation: equipping-skill 1s infinite linear alternate;
+ animation: equipping-skill 2s infinite ease alternate;
opacity: 0;
}
@@ -360,7 +346,7 @@
height: 2px;
transform-origin: center;
background-color: whitesmoke;
- animation: equipping-skill 1s infinite linear alternate;
+ animation: equipping-skill 2s infinite ease alternate;
opacity: 0;
animation-delay: 0.75s
}
diff --git a/client/assets/styles/styles.css b/client/assets/styles/styles.css
index a9112f48..34ebe29d 100644
--- a/client/assets/styles/styles.css
+++ b/client/assets/styles/styles.css
@@ -494,7 +494,7 @@ figure.gray {
.stats svg, .specs svg {
height: 2em;
- stroke-width: 5px;
+ stroke-width: 7px;
fill: none;
}
diff --git a/client/assets/styles/styles.mobile.css b/client/assets/styles/styles.mobile.css
index 0b7715c3..4746019c 100644
--- a/client/assets/styles/styles.mobile.css
+++ b/client/assets/styles/styles.mobile.css
@@ -1,7 +1,7 @@
@media (max-width: 800px) {
#mnml {
font-size: 10pt;
- padding: 0;
+ padding: 1em 0 0 0;
grid-template-columns: 1fr;
grid-template-rows: 1fr min-content;
grid-template-areas:
@@ -26,7 +26,7 @@
}
#mnml.nav-visible nav {
- padding-left: 0;
+ padding: 0.5em;
margin: 0;
display: block;
grid-area: main;
diff --git a/client/src/components/svgs/circle.jsx b/client/src/components/svgs/circle.jsx
index ce388243..c5a229ed 100644
--- a/client/src/components/svgs/circle.jsx
+++ b/client/src/components/svgs/circle.jsx
@@ -4,11 +4,9 @@ module.exports = function circle(colours) {
if (colours.length === 1) {
return (
);
}
@@ -22,17 +20,13 @@ module.exports = function circle(colours) {
-
-
-
-
-
+
+
+
-
-
-
-
-
+
+
+
);
};
diff --git a/client/src/components/svgs/diamond.jsx b/client/src/components/svgs/diamond.jsx
index 8bdd4f39..736a13af 100644
--- a/client/src/components/svgs/diamond.jsx
+++ b/client/src/components/svgs/diamond.jsx
@@ -2,15 +2,11 @@ const preact = require('preact');
module.exports = function triangle(classes) {
return (
-