mirror of
https://github.com/trezor/trezor-wallet
synced 2024-12-31 19:30:53 +00:00
add missing wallet border radius
This commit is contained in:
parent
454410fd5c
commit
48d07e1dea
@ -30,6 +30,11 @@ const AsideWrapper = styled.aside.attrs(props => ({
|
|||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
background: ${colors.MAIN};
|
background: ${colors.MAIN};
|
||||||
border-right: 1px solid ${colors.DIVIDER};
|
border-right: 1px solid ${colors.DIVIDER};
|
||||||
|
border-top-left-radius: 4px;
|
||||||
|
|
||||||
|
@media screen and (max-width: 1170px) {
|
||||||
|
border-top-left-radius: 0px;
|
||||||
|
}
|
||||||
`;
|
`;
|
||||||
|
|
||||||
const StickyContainerWrapper = styled.div.attrs(props => ({
|
const StickyContainerWrapper = styled.div.attrs(props => ({
|
||||||
|
@ -66,6 +66,11 @@ const MainContent = styled.article`
|
|||||||
display: flex;
|
display: flex;
|
||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
overflow: auto;
|
overflow: auto;
|
||||||
|
border-top-right-radius: 4px;
|
||||||
|
|
||||||
|
@media screen and (max-width: 1170px) {
|
||||||
|
border-top-right-radius: 0px;
|
||||||
|
}
|
||||||
`;
|
`;
|
||||||
|
|
||||||
const Navigation = styled.nav`
|
const Navigation = styled.nav`
|
||||||
|
Loading…
Reference in New Issue
Block a user