fix(sidebar): changed server sidebar width

This commit is contained in:
trashtemp
2022-01-15 12:36:50 +01:00
parent c12962c515
commit 64da24da99
3 changed files with 14 additions and 7 deletions

View File

@@ -97,7 +97,6 @@
code {
color: white;
font-size: 90%;
padding-inline-end: 1em;
background: var(--block);
border-radius: var(--border-radius);
font-family: var(--monospace-font), monospace;

View File

@@ -75,7 +75,7 @@ function Icon({
}
const ServersBase = styled.div`
width: 56px;
width: 58px;
height: 100%;
padding-inline-start: 2px;
@@ -212,22 +212,23 @@ function Swoosh() {
return (
<span>
<svg
width="54"
width="56"
height="106"
viewBox="0 0 54 106"
viewBox="0 0 56 106"
xmlns="http://www.w3.org/2000/svg">
<path
d="M54 53C54 67.9117 41.9117 80 27 80C12.0883 80 0 67.9117 0 53C0 38.0883 12.0883 26 27 26C41.9117 26 54 38.0883 54 53Z"
fill={fill}
/>
<path
d="M27 80C4.5 80 54 53 54 53L54.0001 106C54.0001 106 49.5 80 27 80Z"
d="M27.0002 80C4.50023 80 56.0002 53 56.0002 53V106C56.0002 106 49.5002 80 27.0002 80Z"
fill={fill}
/>
<path
d="M27 26C4.5 26 54 53 54 53L53.9999 0C53.9999 0 49.5 26 27 26Z"
d="M27.0003 26C4.50025 26 56 53 56 53L56.0003 0C56.0003 0 49.5003 26 27.0003 26Z"
fill={fill}
/>
<rect x="51" y="50" width="5" height="7" fill={fill} />
</svg>
</span>
);