Add settings button to server list sidebar.

Move more border radiuses to variables.
This commit is contained in:
Paul
2021-08-15 15:21:23 +01:00
parent ff9545ba2f
commit 8a104855a1
20 changed files with 54 additions and 52 deletions

View File

@@ -13,11 +13,11 @@ export default styled.div<Props>`
display: grid;
cursor: pointer;
place-items: center;
transition: 0.1s ease background-color;
transition: 0.1s ease all;
fill: ${normal};
color: ${normal};
/*stroke: ${normal};*/
a {
color: ${normal};
@@ -30,7 +30,6 @@ export default styled.div<Props>`
&:hover {
fill: ${hover};
color: ${hover};
/*stroke: ${hover};*/
a {
color: ${hover};
@@ -41,7 +40,7 @@ export default styled.div<Props>`
props.type === "circle" &&
css`
padding: 4px;
border-radius: 50%;
border-radius: var(--border-radius-half);
background-color: var(--secondary-header);
&:hover {