Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions web/js/reactive/containers/page/Navigation.styles.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,8 @@ export const Container = styled.div`

@media (max-width: ${MOBILE_SIZE}px) {
display: flex;
border-right: none;
border-bottom: 1px solid ${({ theme }) => theme.windowStrong};

& > * {
flex: 1 1 0;
Expand Down
8 changes: 8 additions & 0 deletions web/js/reactive/containers/page/Page.styles.ts
Original file line number Diff line number Diff line change
Expand Up @@ -67,10 +67,18 @@ export const FixedWidthContainer = styled.div<{ hasBorder?: boolean }>`
&:after {
right: 0;
}

@media (max-width: ${MOBILE_SIZE}px) {
&:before,
&:after {
display: none;
}
}
`};

@media (max-width: ${MOBILE_SIZE}px) {
flex-direction: column;
padding: 0;
}
`

Expand Down
4 changes: 4 additions & 0 deletions web/js/reactive/pages/notifications/Notification.styles.ts
Original file line number Diff line number Diff line change
Expand Up @@ -51,10 +51,14 @@ export const RevisionFields = styled.div`
border-radius: 4px;
display: grid;
grid-template-columns: 1fr max-content max-content max-content;
@media (max-width: ${MOBILE_SIZE}px) {
grid-template-columns: 1fr max-content max-content 1fr;
}
`

const RevisionField = styled.div`
padding: 8px;
word-break: break-all;
`

export const RevisionArticle = styled(RevisionField)``
Expand Down