fix: Small tweaks/fixes to custom domain UI

This commit is contained in:
Tom Moor
2022-12-14 08:46:35 -05:00
parent 02b352a382
commit 600b3e4b3e
2 changed files with 29 additions and 26 deletions

View File

@@ -45,7 +45,8 @@ const Contents = styled.div<{ $shrink?: boolean; $width?: number }>`
background: ${(props) => props.theme.menuBackground};
border-radius: 6px;
padding: ${(props) => (props.$shrink ? "6px 0" : "12px 24px")};
max-height: 50vh;
max-height: 75vh;
overflow-x: hidden;
overflow-y: auto;
box-shadow: ${(props) => props.theme.menuShadow};
width: ${(props) => props.$width}px;