mirror of
https://github.com/revoltchat/revite.git
synced 2024-11-06 07:25:53 -05:00
fix(sidebar): decreased vertical spacing
This commit is contained in:
parent
a7c63c639e
commit
8a1f20615e
1 changed files with 4 additions and 2 deletions
|
@ -109,10 +109,12 @@ const ServerList = styled.div`
|
||||||
`;
|
`;
|
||||||
|
|
||||||
const ServerEntry = styled.div<{ active: boolean; home?: boolean }>`
|
const ServerEntry = styled.div<{ active: boolean; home?: boolean }>`
|
||||||
height: 58px;
|
height: 54px;
|
||||||
display: flex;
|
display: flex;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
|
|
||||||
|
//transition: 0.2s ease height;
|
||||||
|
|
||||||
:focus {
|
:focus {
|
||||||
outline: 3px solid blue;
|
outline: 3px solid blue;
|
||||||
}
|
}
|
||||||
|
@ -165,7 +167,7 @@ const ServerEntry = styled.div<{ active: boolean; home?: boolean }>`
|
||||||
|
|
||||||
const ServerCircle = styled.div`
|
const ServerCircle = styled.div`
|
||||||
width: 54px;
|
width: 54px;
|
||||||
height: 58px;
|
height: 54px;
|
||||||
display: flex;
|
display: flex;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
justify-content: center;
|
justify-content: center;
|
||||||
|
|
Loading…
Reference in a new issue